Skip to content

Commit b43ea3a

Browse files
committed
up php to 8, refactoring
1 parent fb547d6 commit b43ea3a

15 files changed

+1177
-754
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/vendor/
22
test/clover.xml
3+
test/.phpunit.result.cache
34
.idea

.scrutinizer.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ coding_style:
1818
build:
1919
environment:
2020
php:
21-
version: 7.4
21+
version: 8.0
2222
tests:
2323
override:
2424
-

.travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
sudo: false
22
language: php
33
php:
4-
- 7.4
4+
#- 8.0
5+
- nightly
56

67
before_script:
78
- composer self-update

composer.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"keywords": [
88
"DI",
99
"Symfony",
10-
"Factory"
10+
"Factory",
11+
"Container"
1112
],
1213
"authors": [{
1314
"name": "Alexpts",
@@ -18,7 +19,7 @@
1819
},
1920
"minimum-stability": "stable",
2021
"require": {
21-
"php": "~7.4",
22+
"php": "~8.0",
2223
"ext-json": "*",
2324
"symfony/dependency-injection": "~5.1",
2425
"symfony/yaml": "^5.1",
@@ -35,7 +36,7 @@
3536
}
3637
},
3738
"require-dev": {
38-
"phpunit/phpunit": "^9.2",
39+
"phpunit/phpunit": "^9.4",
3940
"mikey179/vfsstream": "^1.6"
4041
}
4142
}

0 commit comments

Comments
 (0)