forked from dekalee/php-autopilothq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 886 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
{
"name": "picr/php-autopilothq",
"type": "library",
"description": "PHP wrapper for interacting with the AutopilotHQ API.",
"homepage": "https://github.com/finicprint/php-autopilothq",
"keywords": ["picr", "autopilothq", "autopilot"],
"license": "MIT",
"authors": [
{
"name": "John O",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"guzzlehttp/guzzle": "~6.0"
},
"require-dev": {
"codeception/codeception": "~2.1",
"codeception/aspect-mock": "dev-master",
"phpunit/phpunit": "~5.7",
"phake/phake": "~2.3"
},
"suggest": {
"vlucas/phpdotenv": "Allows secrets to be loaded from .env files."
},
"autoload": {
"psr-4": {
"Autopilot\\": "src/",
"Tests\\": "tests/"
}
}
}