-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1021 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
38
39
{
"name": "blumilksoftware/stubs",
"description": "Laravel stubs refactored and consistent with the Blumilk codestyle.",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.0",
"illuminate/console": "^8.40.0|^9.8.1",
"illuminate/filesystem": "^8.40.0|^9.8.1",
"illuminate/support": "^8.40.0|^9.8.1"
},
"require-dev": {
"blumilksoftware/codestyle": "^1.0.4",
"illuminate/testing": "^8.40.0|^9.8.1",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"Blumilk\\Stubs\\": "src/",
"Blumilk\\Stubs\\Testing\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Blumilk\\Stubs\\BlumilkStubsServiceProvider"
]
}
},
"scripts": {
"test": "./vendor/bin/phpunit tests",
"cs": "./vendor/bin/php-cs-fixer fix --dry-run --diff --config codestyle.php",
"csf": "./vendor/bin/php-cs-fixer fix --diff --config codestyle.php"
}
}