-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathcomposer.json
More file actions
95 lines (95 loc) · 2.18 KB
/
Copy pathcomposer.json
File metadata and controls
95 lines (95 loc) · 2.18 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": "cpx/cpx",
"description": "Run any command from any composer package, even if it's not installed in your project.",
"type": "project",
"license": "MIT",
"keywords": [
"composer",
"command",
"package",
"run"
],
"support": {
"issues": "https://github.com/laravel/cpx/issues",
"source": "https://github.com/laravel/cpx",
"docs": "https://cpx.dev"
},
"authors": [
{
"name": "Taylor Otwell",
"email": "taylor@laravel.com"
}
],
"autoload": {
"psr-4": {
"Cpx\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
},
"files": [
"tests/Support/FilesystemFakes.php"
]
},
"require": {
"php": "^8.3"
},
"require-dev": {
"composer/composer": "^2.8",
"composer/semver": "^3.4",
"laravel/agent-detector": "^2.0",
"laravel/pao": "^1.1",
"laravel/pint": "^1.29",
"laravel/prompts": "^0.3.21",
"mockery/mockery": "^1.6",
"pestphp/pest": "^4.7",
"pestphp/pest-plugin-type-coverage": "^4.0",
"phpstan/phpstan": "^2.2",
"symfony/console": "^7.4|^8.0",
"symfony/process": "^7.4|^8.0"
},
"bin": [
"builds/cpx"
],
"scripts": {
"analyse": [
"phpstan analyse"
],
"build": [
"bash scripts/build.sh"
],
"lint": [
"pint --parallel"
],
"lint:check": [
"pint --parallel --test"
],
"test:types": [
"pest --type-coverage --min=100"
],
"test:unit": [
"pest --parallel"
],
"test": [
"@analyse",
"@lint:check",
"@test:types",
"@test:unit"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"optimize-autoloader": true,
"platform": {
"php": "8.3.0"
},
"sort-packages": true
}
}