Skip to content

Commit

Permalink
Add laravel 11 compatibility (#14)
Browse files Browse the repository at this point in the history
Co-authored-by: Jose Manuel Cardona <[email protected]>
  • Loading branch information
joskfg and josemanuel-cardona authored Apr 3, 2024
1 parent 1ebeeec commit fd8c7a1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
'@PSR2' => true,
'array_syntax' => ['syntax' => 'short'],
'concat_space' => ['spacing' => 'one'],
'new_with_braces' => true,
'new_with_parentheses' => true,
'no_blank_lines_after_phpdoc' => true,
'no_empty_comment' => true,
'no_empty_phpdoc' => true,
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"require": {
"php": ">=8.1",
"illuminate/http": "^9.0 || ^10.0",
"illuminate/http": "^9.0 || ^10.0 || ^11.0",
"nyholm/psr7": "^1.2",
"psr/http-server-middleware": "^1.0",
"symfony/psr-http-message-bridge": "^2.0"
Expand Down
8 changes: 1 addition & 7 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
processIsolation="false"
stopOnFailure="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd"
cacheDirectory=".phpunit.cache"
backupStaticProperties="false">
>
<coverage>
<report>
<clover outputFile="build/clover.xml"/>
Expand All @@ -23,9 +22,4 @@
<logging>
<junit outputFile="build/report.junit.xml"/>
</logging>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</source>
</phpunit>

0 comments on commit fd8c7a1

Please sign in to comment.