-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (55 loc) · 1.45 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
{
"name": "leuverink/magic-todo",
"description": "Higlight TODO's inside your Blade templates",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Leuverink\\MagicTodo\\": "src/",
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "gwleuverink",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"illuminate/contracts": "^10|^11",
"illuminate/support": "^10|^11",
"leuverink/asset-injector": "^2.0"
},
"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"
},
"extra": {
"laravel": {
"providers": [
"Leuverink\\MagicTodo\\ServiceProvider"
]
}
},
"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",
"build": "bash build.sh"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}