-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
37 lines (37 loc) · 902 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"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|^7.0|^8.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|^7.0|^8.0"
},
"autoload": {
"psr-4": {
"LiamWiltshire\\LaravelJitLoader\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LiamWiltshire\\LaravelJitLoader\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"./vendor/bin/phpunit",
"./vendor/bin/phpcs --standard=PSR2 src/",
"php tests/CoverageCheck.php tests/clover.xml 95"
]
},
"minimum-stability": "stable"
}