File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88 strategy :
99 matrix :
1010 os : [ubuntu-latest, macOS-latest]
11- php-version : ['8.1 ', '8.2 ']
11+ php-version : ['8.2 ', '8.3 ']
1212 dependencies : ['lowest', 'highest']
1313 name : ' PHPUnit'
1414 steps :
3131 strategy :
3232 matrix :
3333 os : [ubuntu-latest, macOS-latest]
34- php-version : ['8.1 ', '8.2 ']
34+ php-version : ['8.2 ', '8.3 ']
3535 dependencies : ['lowest', 'highest']
3636 name : ' Coverage'
3737 steps :
5858 runs-on : ubuntu-latest
5959 strategy :
6060 matrix :
61- php-version : ['8.1 ', '8.2 ']
61+ php-version : ['8.2 ', '8.3 ']
6262 dependencies : ['lowest', 'highest']
6363 name : ' Psalm'
6464 steps :
7979 runs-on : ubuntu-latest
8080 strategy :
8181 matrix :
82- php-version : ['8.1 ']
82+ php-version : ['8.2 ']
8383 name : ' CS'
8484 steps :
8585 - name : Checkout
Original file line number Diff line number Diff line change 11composer.lock
22vendor
33.phpunit.result.cache
4+ .phpunit.cache
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 1.4.0 - 2023-09-24
4+
5+ ### Added
6+
7+ - Support for ` innmind/immutable:~5.0 `
8+
9+ ### Removed
10+
11+ - Support for PHP ` 8.1 `
12+
313## 1.3.0 - 2023-05-01
414
515### Added
Original file line number Diff line number Diff line change 1515 "issues" : " http://github.com/Innmind/framework/issues"
1616 },
1717 "require" : {
18- "php" : " ~8.1 " ,
18+ "php" : " ~8.2 " ,
1919 "innmind/operating-system" : " ^3.2" ,
2020 "innmind/cli" : " ^3.1" ,
21- "innmind/immutable" : " ^4.9" ,
21+ "innmind/immutable" : " ^4.9|~5.0 " ,
2222 "innmind/di" : " ^2.0" ,
2323 "ramsey/uuid" : " ^4.7" ,
2424 "innmind/url" : " ^4.1" ,
3737 }
3838 },
3939 "require-dev" : {
40- "phpunit/phpunit" : " ~9.0 " ,
40+ "phpunit/phpunit" : " ~10.2 " ,
4141 "vimeo/psalm" : " ~5.6" ,
42- "innmind/black-box" : " ^4.17 " ,
42+ "innmind/black-box" : " ~5.5 " ,
4343 "innmind/coding-standard" : " ~2.0" ,
4444 "innmind/async-http-server" : " ~1.0"
4545 },
4646 "conflict" : {
47- "innmind/black-box" : " <4.7|~5 .0" ,
47+ "innmind/black-box" : " <5.0|~6 .0" ,
4848 "innmind/async-http-server" : " <1.0|~2.0"
4949 },
5050 "suggest" : {
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
2- <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" colors =" true" bootstrap =" vendor/autoload.php" printerClass =" Innmind\BlackBox\PHPUnit\ResultPrinterV9" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd" >
3- <coverage >
4- <include >
5- <directory >.</directory >
6- </include >
7- <exclude >
8- <directory >./tests</directory >
9- <directory >./vendor</directory >
10- </exclude >
11- </coverage >
2+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" colors =" true" bootstrap =" vendor/autoload.php" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.3/phpunit.xsd" cacheDirectory =" .phpunit.cache" >
3+ <extensions >
4+ <bootstrap class =" Innmind\BlackBox\PHPUnit\Extension" >
5+ </bootstrap >
6+ </extensions >
7+ <coverage />
128 <php >
13- <ini name =" memory_limit" value =" -1" />
9+ <ini name =" memory_limit" value =" -1" />
1410 </php >
1511 <testsuites >
1612 <testsuite name =" Test suite" >
1713 <directory >./tests</directory >
1814 </testsuite >
1915 </testsuites >
16+ <source >
17+ <include >
18+ <directory >.</directory >
19+ </include >
20+ <exclude >
21+ <directory >./tests</directory >
22+ <directory >./vendor</directory >
23+ </exclude >
24+ </source >
2025</phpunit >
You can’t perform that action at this time.
0 commit comments