Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Laravel 9 Compatibility #17

Merged
merged 3 commits into from
Oct 6, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Laravel 9 Compatibility
matthewnessworthy committed Oct 6, 2022

Verified

This commit was signed with the committer’s verified signature.
matthewnessworthy Matthew Nessworthy
commit 31cffcc3e604751aef541f3ce18eac86d28a5bc4
17 changes: 11 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -18,8 +18,8 @@
],
"require": {
"php": "^7.3|^8.0",
"illuminate/events": "^7.0|^8.0",
"illuminate/support": "^7.0|^8.0",
"illuminate/events": "^7|^8|^9",
"illuminate/support": "^7|^8|^9",
"symfony/event-dispatcher": "^5.1",
"symfony/workflow": "^5.1",
"symfony/property-access": "^5.1"
@@ -28,9 +28,9 @@
"funkjedi/composer-include-files": "^1.0",
"laravel/legacy-factories": "^1.1",
"mockery/mockery": "^1.3|^1.4.2",
"orchestra/database": "^5.0|^6.0",
"orchestra/testbench": "^5.0|^6.0",
"phpunit/phpunit": "^8.0|^9.3.3"
"orchestra/database": "^5|^6|^7",
"orchestra/testbench": "^5|^6|^7",
"phpunit/phpunit": "^8|^9"
},
"extra": {
"include_files": [
@@ -56,5 +56,10 @@
]
},
"minimum-stability": "dev",
"prefer-stable": true
"prefer-stable": true,
"config": {
"allow-plugins": {
"funkjedi/composer-include-files": true
}
}
}