-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 792 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 792 Bytes
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
{
"name": "cpx/cpx",
"description": "Run any command from any composer package, even if it's not installed in your project.",
"type": "library",
"license": "MIT",
"keywords": [
"composer",
"command",
"package",
"run"
],
"support": {
"issues": "https://github.com/imliam/cpx/issues",
"source": "https://github.com/imliam/cpx",
"docs": "https://cpx.dev"
},
"authors": [
{
"name": "Liam Hammett",
"email": "liam@liamhammett.com"
}
],
"autoload": {
"psr-4": {
"Cpx\\": "src/"
},
"files": [
"src/functions.php"
]
},
"require": {
"php": "^8.2"
},
"bin": [
"cpx"
]
}