Skip to content
This repository was archived by the owner on Feb 24, 2025. It is now read-only.

Commit 1a91cec

Browse files
committed
upgrade to Laravel 10
1 parent fac8fd5 commit 1a91cec

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
vendor
22
composer.lock
33
.phpunit.result.cache
4+
.php-cs-fixer.cache

.php-cs-fixer.dist.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
3+
$finder = PhpCsFixer\Finder::create()
4+
->in([
5+
__DIR__.'/src',
6+
]);
7+
8+
return CodingLabs\styles($finder);

composer.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@
1515
}
1616
],
1717
"require": {
18-
"php" : "^7.2.5|^8.0",
19-
"illuminate/support": "^6.0|^7.0|^8.0|^9.0"
18+
"php" : "^8.1",
19+
"illuminate/support": "^10.0"
20+
},
21+
"require-dev": {
22+
"codinglabsau/php-styles": "dev-main"
2023
},
2124
"autoload": {
2225
"psr-4": {

0 commit comments

Comments
 (0)