Skip to content

Commit

Permalink
build: Update PHP constrains
Browse files Browse the repository at this point in the history
  • Loading branch information
cjmellor committed Mar 18, 2024
1 parent 973a8b1 commit aafe5ab
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.idea
.php_cs
.php_cs.cache
.phpunit.cache
.phpunit.result.cache
build
composer.lock
Expand Down
14 changes: 8 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,25 +16,27 @@
}
],
"require": {
"php": "^8.1|^8.2",
"illuminate/contracts": "^9.0|^10.0|^11.0",
"spatie/laravel-package-tools": "^1.14.0"
"php": "^8.2",
"illuminate/contracts": "^10.0|^11.0"
},
"require-dev": {
"laravel/pint": "^1.0",
"nunomaduro/collision": "^7.0|^8.0",
"orchestra/testbench": "^7.0|^8.0|^9.0",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-type-coverage": "^2.0"
"pestphp/pest-plugin-arch": "^2.0",
"pestphp/pest-plugin-laravel": "^2.0",
"pestphp/pest-plugin-type-coverage": "^2.0",
"spatie/laravel-package-tools": "^1.14.0"
},
"autoload": {
"psr-4": {
"Cjmellor\\Approval\\": "src"
"Cjmellor\\Approval\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cjmellor\\Approval\\Tests\\": "tests"
"Cjmellor\\Approval\\Tests\\": "tests/"
}
},
"scripts": {
Expand Down

0 comments on commit aafe5ab

Please sign in to comment.