Skip to content

Commit

Permalink
Merge pull request #26 from laravel-shift/l11-compatibility
Browse files Browse the repository at this point in the history
Laravel 11.x Compatibility
  • Loading branch information
imanghafoori1 authored Apr 25, 2024
2 parents 28b4aef + 4f9140b commit a4be217
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
{
"name": "imanghafoori/laravel-decorator",
"description": "A package to easily decorate your function calls.",
"keywords": ["laravel", "decorator pattern", "design patterns", "php decorator pattern"],
"keywords": [
"laravel",
"decorator pattern",
"design patterns",
"php decorator pattern"
],
"license": "MIT",
"homepage": "https://github.com/imanghafoori1/laravel-decorator",
"authors": [
Expand All @@ -12,13 +17,12 @@
],
"require": {
"php": "7.2.*|7.3.*|7.4.*|8.0.*|8.1.*|8.2.*",
"laravel/framework":"~5.1|6.*|7.*|8.*|9.*|10.*"
"laravel/framework": "~5.1|6.*|7.*|8.*|9.*|10.*|^11.0"
},
"require-dev": {
"orchestra/testbench": "~6.0",
"orchestra/testbench": "~6.0|^9.0",
"squizlabs/php_codesniffer": "3.*",
"imanghafoori/php-imports-analyzer": "^1.0.6"

},
"autoload": {
"psr-4": {
Expand All @@ -29,7 +33,9 @@
]
},
"autoload-dev": {
"classmap": ["tests/TestCase.php"]
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"test": "phpunit",
Expand Down

0 comments on commit a4be217

Please sign in to comment.