-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
47 lines (47 loc) · 1.56 KB
/
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
38
39
40
41
42
43
44
45
46
47
{
"name": "northern-lights/eloquent-bootstrap",
"description": "Bootstrap for standalone Eloquent ORM",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Aleksandar Puharic",
"email": "[email protected]",
"homepage": "https://www.puharic.com"
}
],
"require": {
"php": "^7.3|^8.0",
"illuminate/database": "8.83.27",
"illuminate/pagination": "8.83.27"
},
"require-dev": {
"php-parallel-lint/php-console-highlighter": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpunit/php-invoker": "^3.1",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.7",
"symfony/var-dumper": "^5.4"
},
"autoload": {
"psr-4": {
"NorthernLights\\EloquentBootstrap\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NorthernLights\\EloquentBootstrap\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"check-style": "vendor/bin/phpcs -p --standard=PSR12 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "vendor/bin/phpcbf -p --standard=PSR12 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"php-lint": "vendor/bin/parallel-lint . -s --blame --exclude vendor --exclude tests -p php"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"apcu-autoloader": true
}
}