Skip to content

Commit

Permalink
upgrade to Laravel 10
Browse files Browse the repository at this point in the history
  • Loading branch information
stevethomas committed Feb 20, 2023
1 parent fac8fd5 commit 1a91cec
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
vendor
composer.lock
.phpunit.result.cache
.php-cs-fixer.cache
8 changes: 8 additions & 0 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php

$finder = PhpCsFixer\Finder::create()
->in([
__DIR__.'/src',
]);

return CodingLabs\styles($finder);
7 changes: 5 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,11 @@
}
],
"require": {
"php" : "^7.2.5|^8.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0"
"php" : "^8.1",
"illuminate/support": "^10.0"
},
"require-dev": {
"codinglabsau/php-styles": "dev-main"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 1a91cec

Please sign in to comment.