File tree Expand file tree Collapse file tree 3 files changed +29
-10
lines changed Expand file tree Collapse file tree 3 files changed +29
-10
lines changed Original file line number Diff line number Diff line change 2
2
/.idea
3
3
/.php_cs.cache
4
4
/vendor /
5
- /. composer.lock
5
+ /composer.lock
Original file line number Diff line number Diff line change
1
+ language : php
2
+ php :
3
+ - 7.3
4
+ - 7.4
5
+ - nightly
6
+
7
+ cache :
8
+ directories :
9
+ - $HOME/.composer
10
+ - build/cache
11
+
12
+ install :
13
+ - phpenv config-rm xdebug.ini || true
14
+ - if [[ $TRAVIS_PHP_VERSION = nightly ]]; then export COMPOSER_FLAGS="--ignore-platform-reqs"; fi
15
+ - travis_retry composer install --prefer-dist $COMPOSER_FLAGS
16
+
17
+ script :
18
+ - composer normalize --no-check-lock --diff --dry-run
19
+ - php vendor/bin/phpunit
20
+
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " infection/abstract-testframework-adapter" ,
3
- "description" : " Abstract Test Framework Adapter for Infection" ,
4
3
"type" : " library" ,
4
+ "description" : " Abstract Test Framework Adapter for Infection" ,
5
5
"license" : " BSD-3-Clause" ,
6
6
"authors" : [
7
7
{
8
8
"name" : " Maks Rafalko" ,
9
9
10
10
}
11
11
],
12
+ "require" : {
13
+ "php" : " ^7.3 || ^8.0"
14
+ },
15
+ "require-dev" : {
16
+ "ergebnis/composer-normalize" : " ^2.8" ,
17
+ "phpunit/phpunit" : " ^9.0"
18
+ },
12
19
"config" : {
13
20
"sort-packages" : true
14
21
},
15
-
16
22
"autoload" : {
17
23
"psr-4" : {
18
24
"Infection\\ AbstractTestFramework\\ " : " src/"
22
28
"psr-4" : {
23
29
"Infection\\ AbstractTestFramework\\ " : " tests/"
24
30
}
25
- },
26
-
27
- "require" : {
28
- "php" : " ^7.3 || ^8.0"
29
- },
30
- "require-dev" : {
31
- "phpunit/phpunit" : " ^9.0"
32
31
}
33
32
}
You can’t perform that action at this time.
0 commit comments