This repository was archived by the owner on Jul 22, 2022. It is now read-only.
File tree 2 files changed +6
-8
lines changed
2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 36
36
dependencies : lowest
37
37
allowed-to-fail : false
38
38
variant : normal
39
- - php-version : ' 8.0'
40
- dependencies : highest
41
- allowed-to-fail : true
42
- variant : normal
43
39
- php-version : ' 7.4'
44
40
dependencies : highest
45
41
allowed-to-fail : false
60
56
- name : Add PHPUnit matcher
61
57
run : echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
62
58
63
- - name : Configuration required for PHP 8.0
64
- if : matrix.php-version == '8.0'
65
- run : composer config platform.php 7.4.99
66
-
67
59
- name : Globally install symfony/flex
68
60
if : matrix.symfony-require != ''
69
61
run : composer global require --no-progress --no-scripts --no-plugins symfony/flex
Original file line number Diff line number Diff line change 11
11
* file that was distributed with this source code.
12
12
*/
13
13
14
+ use Doctrine \Deprecations \Deprecation ;
15
+
14
16
/*
15
17
* DO NOT EDIT THIS FILE!
16
18
*
24
26
25
27
require_once __DIR__ .'/../vendor/autoload.php ' ;
26
28
29
+ if (class_exists (Deprecation::class)) {
30
+ Deprecation::enableWithTriggerError ();
31
+ }
32
+
27
33
if (file_exists ($ file = __DIR__ .'/custom_bootstrap.php ' )) {
28
34
require_once $ file ;
29
35
}
You can’t perform that action at this time.
0 commit comments