-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.14 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
{
"name": "sourcetoad/rule-helper-for-laravel",
"description": "Rule helper for Laravel",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": "^8.2||^8.3||^8.4",
"laravel/framework": "^11.23.2"
},
"require-dev": {
"ext-json": "*",
"orchestra/testbench": "^9.4",
"phpunit/phpunit": "^10.5",
"laravel/pint": "1.19.0",
"larastan/larastan": "^3.0"
},
"autoload": {
"psr-4": {
"Sourcetoad\\RuleHelper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sourcetoad\\RuleHelper\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Sourcetoad\\RuleHelper\\RuleHelperServiceProvider"
]
}
},
"scripts": {
"check-code": [
"@lint",
"@phpstan",
"@test"
],
"lint": "@php vendor/bin/pint --test",
"lint:fix": "@php vendor/bin/pint",
"phpstan": "@php vendor/bin/phpstan analyse",
"test": "@php vendor/bin/phpunit"
}
}