Skip to content

Commit

Permalink
Merge pull request #19 from fridzel/master
Browse files Browse the repository at this point in the history
Laravel 6 support
  • Loading branch information
liam-wiltshire authored Sep 10, 2019
2 parents 6f0091e + 3f80346 commit 5f51430
Showing 1 changed file with 32 additions and 34 deletions.
66 changes: 32 additions & 34 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,34 @@
{
"name": "liam-wiltshire/laravel-jit-loader",
"description": "Just In Time relationship loader for Laravel",
"license": "MIT",
"authors": [
{
"name": "Liam Wiltshire",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.0",
"illuminate/database": "^5.5.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0.0",
"squizlabs/php_codesniffer" : "^3.0.0",
"phpunit/php-code-coverage": "^6.0.0",
"illuminate/log": "^5.5.0"
},
"autoload": {
"psr-4": {
"LiamWiltshire\\LaravelJitLoader\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LiamWiltshire\\LaravelJitLoader\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"cs": "php-cs-fixer fix src/ --level=psr2"
},
"minimum-stability": "stable"
"name": "liam-wiltshire/laravel-jit-loader",
"description": "Just In Time relationship loader for Laravel",
"license": "MIT",
"authors": [{
"name": "Liam Wiltshire",
"email": "[email protected]"
}],
"require": {
"php": ">=7.1.0",
"illuminate/database": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0.0",
"squizlabs/php_codesniffer": "^3.0.0",
"phpunit/php-code-coverage": "^6.0.0",
"illuminate/log": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0"
},
"autoload": {
"psr-4": {
"LiamWiltshire\\LaravelJitLoader\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LiamWiltshire\\LaravelJitLoader\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"cs": "php-cs-fixer fix src/ --level=psr2"
},
"minimum-stability": "stable"
}

0 comments on commit 5f51430

Please sign in to comment.