-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 973 Bytes
/
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
{
"name": "apple-x-co/rocket",
"description": "deploy tool",
"authors": [
{
"name": "apple-x-co",
"email": "apple.x.co@gmail.com"
}
],
"bin": [
"bin/rocket.php"
],
"require": {
"php": "^5.4 || ^7.0 || ^8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-posix": "*",
"ext-zip": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"autoload": {
"psr-4": {
"Rocket\\": "src/"
},
"files": [
"src/Polyfill/bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"Rocket\\": "tests/"
}
},
"scripts": {
"information": "@php rocket.phar --info --no-color",
"download-phar-composer": "curl --silent --show-error --location https://clue.engineering/phar-composer-latest.phar --output phar-composer.phar",
"build": "@php bin/build.php",
"test": "./vendor/bin/phpunit"
},
"config": {
"sort-packages": true,
"platform": {
"php": "5.4"
}
}
}