File tree Expand file tree Collapse file tree 6 files changed +43
-40
lines changed
Expand file tree Collapse file tree 6 files changed +43
-40
lines changed Original file line number Diff line number Diff line change 2222 uses : actions/cache@v4
2323 with :
2424 path : ~/.composer/cache/files
25- key : dependencies-php-8.3-illuminate-10 .*-composer-${{ hashFiles('composer.json') }}
25+ key : dependencies-php-8.3-illuminate-11 .*-composer-${{ hashFiles('composer.json') }}
2626
2727 - name : Setup PHP
2828 uses : shivammathur/setup-php@v2
Original file line number Diff line number Diff line change @@ -16,31 +16,17 @@ jobs:
1616 strategy :
1717 fail-fast : true
1818 matrix :
19- php : [ 8.0, 8. 1, 8.2, 8.3 ]
20- illuminate : [ 7.*, ~8.74, ^9 .0, ^10 .0 ]
19+ php : [ 8.1, 8.2, 8.3 ]
20+ illuminate : [ ^10 .0, ^11 .0 ]
2121 stability : [ prefer-lowest, prefer-stable ]
2222 include :
23- - illuminate : 7.*
24- testbench : 5.*
25- - illuminate : ~8.74
26- testbench : 6.*
27- - illuminate : ^9.0
28- testbench : 7.*
2923 - illuminate : ^10.0
3024 testbench : 8.*
25+ - illuminate : ^11.0
26+ testbench : 9.*
3127 exclude :
3228 - php : 8.1
33- illuminate : 7.*
34- - php : 8.0
35- illuminate : ^10.0
36- - php : 8.2
37- illuminate : 7.*
38- - php : 8.2
39- illuminate : ~8.74
40- - php : 8.3
41- illuminate : 7.*
42- - php : 8.3
43- illuminate : ~8.74
29+ illuminate : ^11.0
4430
4531 name : P${{ matrix.php }} - I${{ matrix.illuminate }} - ${{ matrix.stability }}
4632
6854 composer update --${{ matrix.stability }} --prefer-dist --no-interaction
6955
7056 - name : Execute tests
71- run : vendor/bin/phpunit --verbose
57+ run : vendor/bin/phpunit
Original file line number Diff line number Diff line change 11/.idea
22vendor
3- / composer.lock
3+ composer.lock
44composer.phar
55clover.json
66clover.xml
77.phpunit.result.cache
8+ .phpunit.cache /
Original file line number Diff line number Diff line change 22
33## [ Unreleased] ( https://github.com/markwalet/laravel-changelog/compare/v1.9.0...master )
44
5+ ### Added
6+ - Added support for Laravel 11
7+
8+ ### Removed
9+ - Removed support for PHP 8.0
10+ - Removed support for Laravel 7
11+ - Removed support for Laravel 8
12+ - Removed support for Laravel 9
13+
14+ ### Changed
15+ - Upgraded to PHPUnit 10.
16+
517## [ v1.9.0 (2023-12-02)] ( https://github.com/markwalet/laravel-changelog/compare/v1.8.0...v1.9.0 )
618
719### Added
Original file line number Diff line number Diff line change 1111 ],
1212 "require" : {
1313 "php" : " 8.*" ,
14- "laravel/framework" : " 7.*|~8.74|^9.0| ^10.0|^11.0" ,
14+ "laravel/framework" : " ^10.0|^11.0" ,
1515 "markwalet/laravel-git-state" : " ~1.0" ,
1616 "ext-simplexml" : " *" ,
1717 "ext-dom" : " *"
1818 },
1919 "require-dev" : {
20- "phpunit/phpunit" : " ~9.3 " ,
20+ "phpunit/phpunit" : " ^10.5 " ,
2121 "mockery/mockery" : " ~1.4" ,
22- "orchestra/testbench" : " 5 .*|6.*|7.*|8 .*"
22+ "orchestra/testbench" : " 8 .*|9 .*"
2323 },
2424 "autoload" : {
2525 "psr-4" : {
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
22<phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
33 bootstrap =" vendor/autoload.php"
4+ backupGlobals =" false"
45 colors =" true"
5- verbose =" true"
6- xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd" >
7- <coverage processUncoveredFiles =" true" >
8- <include >
9- <directory suffix =" .php" >./src</directory >
10- </include >
11- <exclude >
12- <directory suffix =" .php" >./src/Exceptions/*</directory >
13- </exclude >
14- </coverage >
15- <testsuites >
16- <testsuite name =" Changelog Test Suite" >
17- <directory >./tests/</directory >
18- </testsuite >
19- </testsuites >
6+ processIsolation =" false"
7+ stopOnFailure =" false"
8+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.5/phpunit.xsd"
9+ cacheDirectory =" .phpunit.cache"
10+ backupStaticProperties =" false" >
11+ <testsuites >
12+ <testsuite name =" Changelog Test Suite" >
13+ <directory suffix =" Test.php" >./tests/</directory >
14+ </testsuite >
15+ </testsuites >
16+ <source >
17+ <include >
18+ <directory suffix =" .php" >./src</directory >
19+ </include >
20+ <exclude >
21+ <directory suffix =" .php" >./src/Exceptions/*</directory >
22+ </exclude >
23+ </source >
2024</phpunit >
You can’t perform that action at this time.
0 commit comments