-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.09 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": "kblais/laravel-helpers",
"description": "A collection of helpers for your Laravel application.",
"require": {
"php": "^8.0",
"illuminate/database": "^9.0|^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench": "^7.0|^8.0|^9.0",
"friendsofphp/php-cs-fixer": "^3.5",
"larastan/larastan": "^2.0"
},
"autoload": {
"psr-4": {
"Kblais\\LaravelHelpers\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Kblais\\LaravelHelpers\\Tests\\": "tests"
}
},
"scripts": {
"tests:cs": [
"@php ./vendor/bin/php-cs-fixer fix"
],
"tests:stan": [
"@php ./vendor/bin/phpstan analyze"
],
"tests:unit": [
"@php ./vendor/bin/phpunit --colors"
],
"tests": [
"@tests:cs",
"@tests:stan",
"@tests:unit"
]
},
"license": "MIT",
"authors": [
{
"name": "Killian Blais",
"email": "[email protected]"
}
]
}