-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (50 loc) · 1.4 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
{
"name": "shootproof/shootproof-cli",
"homepage": "http://developer.shootproof.com",
"description": "A command line client for interacting with the ShootProof API",
"keywords": ["shootproof", "api", "cli", "client", "photography", "photo"],
"type": "project",
"license": "MIT",
"authors": [
{
"name": "ShootProof",
"homepage": "http://developer.shootproof.com"
}
],
"support": {
"email": "support@shootproof.com",
"issues": "https://github.com/ShootProof/shootproof-cli/issues",
"source": "https://github.com/ShootProof/shootproof-cli"
},
"require": {
"php": ">=5.4",
"josegonzalez/dotenv": "~0.2",
"aura/cli": "~2.0",
"aura/di": "~2.0",
"monolog/monolog": "~1.11",
"shootproof/php-sdk": "^1.1.2",
"symfony/finder": "~2.6"
},
"require-dev": {
"phpunit/phpunit": "~4.4",
"squizlabs/php_codesniffer": "~2.2",
"jakub-onderka/php-parallel-lint": "0.8.*",
"satooshi/php-coveralls": "0.6.*"
},
"autoload": {
"psr-4": {
"ShootProof\\Cli\\": ["src/"]
}
},
"autoload-dev": {
"psr-4": {
"ShootProof\\Cli\\Test\\": ["tests/src/"]
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"bin": ["bin/shootproof-cli"]
}