Add Laravel 5.5 support
Removed tests for HHVM and add testing on PHP version 7.1 and 7.2. Added support for Laravel 5.5.
This commit is contained in:
@ -10,13 +10,12 @@
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": "^5.5.9 || >=7.0",
|
||||
"illuminate/support": "5.1.* || 5.2.* || 5.3.* || 5.4.*"
|
||||
"php": "^5.5.9 || ^7.0",
|
||||
"illuminate/support": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.*"
|
||||
},
|
||||
"require-dev" :{
|
||||
"graham-campbell/testbench": "^3.1",
|
||||
"mockery/mockery": "^0.9.4",
|
||||
"phpunit/phpunit": "^4.8 || ^5.0"
|
||||
"require-dev": {
|
||||
"graham-campbell/testbench": "^3.4 || ^4.0",
|
||||
"phpunit/phpunit": "^4.8 || ^5.7 || ^6.3"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
@ -31,6 +30,19 @@
|
||||
"config": {
|
||||
"preferred-install": "dist"
|
||||
},
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "3.0-dev"
|
||||
},
|
||||
"laravel": {
|
||||
"providers": [
|
||||
"TomLingham\\Searchy\\SearchyServiceProvider"
|
||||
],
|
||||
"aliases": {
|
||||
"Searchy": "TomLingham\\Searchy\\Facades\\Searchy"
|
||||
}
|
||||
}
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user