File tree 5 files changed +315
-227
lines changed
5 files changed +315
-227
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ coding_style:
18
18
build :
19
19
environment :
20
20
php :
21
- version : 8.0
21
+ version : 8.1
22
22
tests :
23
23
override :
24
24
-
Original file line number Diff line number Diff line change 1
1
sudo : false
2
2
language : php
3
3
php :
4
- # - 8.0
4
+ - 8.1
5
5
- nightly
6
6
7
7
before_script :
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ $loader = new LoaderContainer;
24
24
$container = $loader->getContainer($configs, $fileCache);
25
25
```
26
26
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.
28
28
You can disable all watch for production:
29
29
``` php
30
30
$loader = new LoaderContainer;
Original file line number Diff line number Diff line change 19
19
},
20
20
"minimum-stability" : " stable" ,
21
21
"require" : {
22
- "php" : " ~8.0 " ,
22
+ "php" : " ^8.1 " ,
23
23
"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 "
27
27
},
28
28
"autoload" : {
29
29
"psr-4" : {
36
36
}
37
37
},
38
38
"require-dev" : {
39
- "phpunit/phpunit" : " ^9.4 " ,
39
+ "phpunit/phpunit" : " ^9.5 " ,
40
40
"mikey179/vfsstream" : " ^1.6"
41
+ },
42
+ "scripts" : {
43
+ "test" : " vendor/bin/phpunit --config=test/phpunit.xml"
41
44
}
42
45
}
You can’t perform that action at this time.
0 commit comments