-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.51 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "soyhuce/dev-tools",
"description": "Laravel dev-tools",
"keywords": [
"soyhuce",
"dev-tools",
"backend"
],
"license": "MIT",
"authors": [
{
"name": "Quentin Anvo",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.3",
"illuminate/http": "^11.0",
"illuminate/support": "^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13",
"intervention/image": "^3.0",
"larastan/larastan": "^3.0",
"orchestra/testbench": "^9.0",
"phpunit/phpunit": "^11.0"
},
"suggest": {
"intervention/image": "Needed to use Image generation component"
},
"autoload": {
"psr-4": {
"Soyhuce\\DevTools\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Soyhuce\\DevTools\\Test\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Soyhuce\\DevTools\\ServiceProvider"
]
}
},
"scripts": {
"cs": "vendor/bin/php-cs-fixer fix",
"test": "vendor/bin/phpunit --config=phpunit.xml",
"analyse": "vendor/bin/phpstan analyse",
"all": [
"@cs",
"@test",
"@analyse"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"sort-packages": true
}
}