-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (46 loc) · 1.25 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": "leuverink/asset-injector",
"description": "Automatically inject your package assets onto the page",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Leuverink\\AssetInjector\\": "src/",
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "gwleuverink",
"email": "willem@leuver.ink"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"illuminate/contracts": "^10|^11",
"illuminate/support": "^10|^11"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"laravel/pint": "^1",
"larastan/larastan": "^2.9",
"squizlabs/php_codesniffer": "^3",
"tightenco/duster": "^3",
"tightenco/tlint": "^9",
"orchestra/testbench": "^9",
"pestphp/pest": "^2.35"
},
"scripts": {
"lint": "vendor/bin/duster lint",
"fix": "vendor/bin/duster fix",
"analyze": "vendor/bin/phpstan analyse",
"baseline": "vendor/bin/phpstan analyse --generate-baseline",
"test": "@php vendor/bin/pest --bail"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}