File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 6
6
- 7.3
7
7
- 7.4
8
8
9
- before_script : composer install --dev --prefer-source
9
+ matrix :
10
+ include :
11
+ - php : 7.1
12
+ env : deps=low
13
+
14
+ env :
15
+ global :
16
+ - deps=high
17
+
18
+ before_script :
19
+ - if [ "$deps" = "high" ]; then composer install --dev --prefer-source; fi;
20
+ - if [ "$deps" = "low" ]; then composer --prefer-lowest --prefer-stable --ignore-platform-reqs update; fi
21
+ - if [ -f $HOME/.phpenv/versions/$(phpenv global)/etc/conf.d/xdebug.ini ]; then phpenv config-rm xdebug.ini; fi
10
22
11
23
script :
12
24
- vendor/bin/phpunit -v
Original file line number Diff line number Diff line change 23
23
"symfony/console" : " ~2.1|~3.0" ,
24
24
"guzzlehttp/guzzle" : " ~6.1" ,
25
25
"phpunit/phpunit" : " ^7" ,
26
- "phpstan/phpstan" : " ^0.12"
26
+ "phpstan/phpstan" : " ^0.12.5 "
27
27
},
28
28
"suggest" : {
29
29
"symfony/console" : " To use CLI OEmbed scripts." ,
You can’t perform that action at this time.
0 commit comments