Skip to content

Commit efe2fb9

Browse files
committed
Update dependency, php 8.1
1 parent b43ea3a commit efe2fb9

File tree

5 files changed

+315
-227
lines changed

5 files changed

+315
-227
lines changed

.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: 8.0
21+
version: 8.1
2222
tests:
2323
override:
2424
-

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
sudo: false
22
language: php
33
php:
4-
#- 8.0
4+
- 8.1
55
- nightly
66

77
before_script:

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ $loader = new LoaderContainer;
2424
$container = $loader->getContainer($configs, $fileCache);
2525
```
2626

27-
Loader has auto detect config changes and watch services from configs and auto rebuild container.
27+
Loader has autodetect config changes and watch services from configs and auto rebuild container.
2828
You can disable all watch for production:
2929
```php
3030
$loader = new LoaderContainer;

composer.json

+8-5
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
},
2020
"minimum-stability": "stable",
2121
"require": {
22-
"php": "~8.0",
22+
"php": "^8.1",
2323
"ext-json": "*",
24-
"symfony/dependency-injection": "~5.1",
25-
"symfony/yaml": "^5.1",
26-
"symfony/config": "^5.1"
24+
"symfony/dependency-injection": "^6.0",
25+
"symfony/yaml": "^6.0",
26+
"symfony/config": "^6.0"
2727
},
2828
"autoload": {
2929
"psr-4": {
@@ -36,7 +36,10 @@
3636
}
3737
},
3838
"require-dev": {
39-
"phpunit/phpunit": "^9.4",
39+
"phpunit/phpunit": "^9.5",
4040
"mikey179/vfsstream": "^1.6"
41+
},
42+
"scripts": {
43+
"test": "vendor/bin/phpunit --config=test/phpunit.xml"
4144
}
4245
}

0 commit comments

Comments
 (0)