File tree Expand file tree Collapse file tree 4 files changed +180
-323
lines changed Expand file tree Collapse file tree 4 files changed +180
-323
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ matrix:
40
40
install :
41
41
- composer validate
42
42
- if [ -z "$dropPlatform" ]; then composer config --unset platform.php; fi;
43
+ - if [ -z "$dropPlatform" ]; then composer update --lock; fi;
43
44
- if [ -z "$qaExtended" ]; then phpenv config-rm xdebug.ini || :; fi;
44
45
- if [ -z "$dependencies" ]; then composer install --prefer-dist; fi;
45
46
- if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest --prefer-dist -n; fi;
Original file line number Diff line number Diff line change 15
15
"infection/infection" : " ^0.6.2" ,
16
16
"jakub-onderka/php-console-highlighter" : " ^0.3.2" ,
17
17
"jakub-onderka/php-parallel-lint" : " ^0.9.2" ,
18
+ "localheinz/composer-normalize" : " ^0.1.0" ,
18
19
"phake/phake" : " ^3.0.1" ,
19
20
"phpunit/phpunit" : " ^6.2"
20
21
},
22
+ "require-dev" : {},
23
+ "config" : {
24
+ "platform" : {
25
+ "php" : " 7.0"
26
+ },
27
+ "sort-packages" : true
28
+ },
21
29
"autoload" : {
22
30
"psr-4" : {
23
31
"ApiClients\\ Tools\\ TestUtilities\\ " : " src/"
28
36
"ApiClients\\ Tests\\ Tools\\ TestUtilities\\ " : " tests/"
29
37
}
30
38
},
31
- "require-dev" : {
32
- },
33
- "config" : {
34
- "sort-packages" : true ,
35
- "platform" : {
36
- "php" : " 7.0"
37
- }
38
- },
39
39
"scripts" : {
40
+ "post-update-cmd" : [
41
+ " composer normalize"
42
+ ],
43
+ "post-install-cmd" : [
44
+ " composer normalize"
45
+ ],
40
46
"ensure-installed" : " composer install --ansi -n -q" ,
41
47
"cs" : [
42
48
" @ensure-installed" ,
63
69
" infection --ansi"
64
70
],
65
71
"qa-all" : [
72
+ " composer validate --ansi" ,
73
+ " composer normalize --ansi" ,
66
74
" @lint-php" ,
67
75
" @cs" ,
68
76
" @unit"
69
77
],
70
- "qa-all-extended" : [
78
+ "qa-all-coverage" : [
79
+ " composer validate --ansi" ,
80
+ " composer normalize --ansi" ,
71
81
" @lint-php" ,
72
82
" @cs" ,
73
83
" @unit-coverage" ,
You can’t perform that action at this time.
0 commit comments