-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
69 lines (69 loc) · 1.78 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "canyongbs/common",
"type": "package",
"license": "Elastic-2.0",
"require": {
"filament/filament": "^3.0",
"laravel/framework": "^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.60",
"phpstan/phpstan": "^2.1"
},
"autoload": {
"psr-4": {
"CanyonGBS\\Common\\": "src/"
}
},
"scripts": {
"php-cs-format": [
"./vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix -v --config=./php-cs-fixer.php"
],
"php-cs-format-dryrun": [
"@php-cs-format --dry-run --stop-on-violation"
],
"php-cs-clear-cache": [
"rm -f ./.php-cs-fixer.cache"
],
"prettier": [
"./node_modules/.bin/prettier \"resources/**/*{.css,.blade.php,.js}\" --config ./.prettierrc.json --ignore-path ./.prettierignore --cache"
],
"prettier-format": [
"@prettier --write"
],
"prettier-format-dryrun": [
"@prettier --check"
],
"clear-prettier-cache": [
"rm -f ./node_modules/.cache/prettier/.prettier-cache"
],
"format-dryrun": [
"@php-cs-format-dryrun",
"@prettier-format-dryrun"
],
"format": [
"@php-cs-format",
"@prettier-format"
],
"lint": [
"./vendor/bin/phpstan analyse --memory-limit=2G"
],
"checks": [
"@format-dryrun",
"@lint"
]
},
"authors": [
{
"name": "Canyon GBS"
}
],
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"CanyonGBS\\Common\\CommonServiceProvider"
]
}
}
}