Skip to content

Commit c84d18f

Browse files
committed
laravel 6 support
1 parent 6f0091e commit c84d18f

File tree

1 file changed

+32
-34
lines changed

1 file changed

+32
-34
lines changed

composer.json

Lines changed: 32 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,34 @@
11
{
2-
"name": "liam-wiltshire/laravel-jit-loader",
3-
"description": "Just In Time relationship loader for Laravel",
4-
"license": "MIT",
5-
"authors": [
6-
{
7-
"name": "Liam Wiltshire",
8-
"email": "[email protected]"
9-
}
10-
],
11-
"require": {
12-
"php": ">=7.1.0",
13-
"illuminate/database": "^5.5.0"
14-
},
15-
"require-dev": {
16-
"phpunit/phpunit": "^7.0.0",
17-
"squizlabs/php_codesniffer" : "^3.0.0",
18-
"phpunit/php-code-coverage": "^6.0.0",
19-
"illuminate/log": "^5.5.0"
20-
},
21-
"autoload": {
22-
"psr-4": {
23-
"LiamWiltshire\\LaravelJitLoader\\": "src/"
24-
}
25-
},
26-
"autoload-dev": {
27-
"psr-4": {
28-
"LiamWiltshire\\LaravelJitLoader\\Tests\\": "tests/"
29-
}
30-
},
31-
"scripts": {
32-
"test": "phpunit",
33-
"cs": "php-cs-fixer fix src/ --level=psr2"
34-
},
35-
"minimum-stability": "stable"
2+
"name": "liam-wiltshire/laravel-jit-loader",
3+
"description": "Just In Time relationship loader for Laravel",
4+
"license": "MIT",
5+
"authors": [{
6+
"name": "Liam Wiltshire",
7+
"email": "[email protected]"
8+
}],
9+
"require": {
10+
"php": ">=7.1.0",
11+
"illuminate/database": "^5.5.0"
12+
},
13+
"require-dev": {
14+
"phpunit/phpunit": "^7.0.0",
15+
"squizlabs/php_codesniffer": "^3.0.0",
16+
"phpunit/php-code-coverage": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0",
17+
"illuminate/log": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0"
18+
},
19+
"autoload": {
20+
"psr-4": {
21+
"LiamWiltshire\\LaravelJitLoader\\": "src/"
22+
}
23+
},
24+
"autoload-dev": {
25+
"psr-4": {
26+
"LiamWiltshire\\LaravelJitLoader\\Tests\\": "tests/"
27+
}
28+
},
29+
"scripts": {
30+
"test": "phpunit",
31+
"cs": "php-cs-fixer fix src/ --level=psr2"
32+
},
33+
"minimum-stability": "stable"
3634
}

0 commit comments

Comments
 (0)