-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
95 lines (95 loc) · 2.63 KB
/
composer.json
File metadata and controls
95 lines (95 loc) · 2.63 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "canyongbs/common",
"type": "package",
"license": "Elastic-2.0",
"require": {
"php": "8.4.*",
"filament/filament": "^4.11.6",
"internachi/modular": "^2.0 || ^3.0",
"internachi/modularize": "^1.1",
"laravel/framework": "^11.0|^12.0",
"laravel/pennant": "^1.0",
"laravel/prompts": "^0.3",
"tapp/filament-timezone-field": "^3.0"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5.50",
"php-coveralls/php-coveralls": "^0.1.0",
"php-mock/php-mock-phpunit": "^2.13",
"pestphp/pest": "^3.8.5",
"orchestra/testbench": "^10.4",
"pestphp/pest-plugin-laravel": "^3.2",
"friendsofphp/php-cs-fixer": "^3.75",
"orrison/meliorstan": "^0.3.2",
"larastan/larastan": "^3.0"
},
"autoload": {
"psr-4": {
"CanyonGBS\\Common\\": "src/",
"CanyonGBS\\Common\\Tests\\": "tests"
}
},
"autoload-dev": {
"psr-4": {
"Workbench\\App\\": "workbench/app/",
"Workbench\\Database\\Factories\\": "workbench/database/factories/"
}
},
"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 . --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"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}