-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.04 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
{
"name": "brekitomasson/laravel-support-helpers",
"description": "Helper methods in the spirit of Laravel's Arr and Str.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"BrekiTomasson\\Support\\": "src/"
},
"files": [
"src/Global/NumHelper.php"
]
},
"authors": [
{
"name": "Breki Tomasson",
"email": "[email protected]"
}
],
"minimum-stability": "beta",
"require": {
},
"require-dev": {
"brekitomasson/php-cs-fixer-breki-config": "^1.1",
"nunomaduro/larastan": "^2.2",
"psy/psysh": "^v0.11",
"pestphp/pest": "^1.22",
"orchestra/testbench": "^7.7"
},
"scripts": {
"pest": "vendor/bin/pest --coverage --colors=always",
"stan": "vendor/bin/phpstan analyse",
"fix": "vendor/bin/php-cs-fixer fix --config ./.php-cs-fixer.php"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}