Skip to content

Commit

Permalink
Cleanup composer.json
Browse files Browse the repository at this point in the history
- Use Illuminate packages instead of laravel/framework
- Require "php" >= 7.1
- Add "prefer-stable" so stable packages are used by default
  • Loading branch information
chancezeus committed Oct 22, 2020
1 parent 8a35815 commit cb5fb2c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
}
],
"require": {
"laravel/framework": "^6.0|^7.0|^8.0",
"php": "^7.1",
"illuminate/http": "^6.0|^7.0|^8.0",
"illuminate/routing": "^6.0|^7.0|^8.0",
"illuminate/support": "^6.0|^7.0|^8.0",
"aws/aws-php-sns-message-validator": "^1.6"
},
"autoload": {
Expand Down Expand Up @@ -44,5 +47,6 @@
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
"minimum-stability": "dev",
"prefer-stable": true
}

0 comments on commit cb5fb2c

Please sign in to comment.