Skip to content

Commit 04ac8b3

Browse files
authored
Laravel 9.x Support + support package auto-discovery (#4)
* Laravel 9.x support * Support package auto-discovery
1 parent 650f964 commit 04ac8b3

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

composer.json

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,13 @@
55
"type": "library",
66
"require": {
77
"php": "^8.0",
8-
"illuminate/validation": "^8.0",
9-
"illuminate/support": "^8.0"
8+
"illuminate/validation": "^8.0|^9.0",
9+
"illuminate/support": "^8.0|^9.0"
1010
},
1111
"require-dev": {
1212
"phpunit/phpunit": "^9.5",
13-
"symfony/var-dumper": "^5.3",
1413
"phpstan/phpstan": "^1.5",
15-
"laravel/framework": "^8.0"
14+
"laravel/framework": "^9.0"
1615
},
1716
"autoload": {
1817
"psr-4": {
@@ -25,5 +24,12 @@
2524
"name": "Bez Hermoso",
2625
"email": "[email protected]"
2726
}
28-
]
27+
],
28+
"extra": {
29+
"laravel": {
30+
"providers": [
31+
"Square\\Hyrule\\HyruleServiceProvider"
32+
]
33+
}
34+
}
2935
}

0 commit comments

Comments
 (0)