forked from dekalee/php-autopilothq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 989 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
{
"name": "zonneplan/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": "^8.3",
"guzzlehttp/guzzle": "^7.2",
"ext-json": "*"
},
"require-dev": {
"codeception/codeception": "^4.0|^5.0",
"codeception/aspect-mock": "dev-master",
"phpunit/phpunit": "^9.0|^10.0|^11.0",
"phake/phake": "^4.0"
},
"suggest": {
"vlucas/phpdotenv": "Allows secrets to be loaded from .env files."
},
"autoload": {
"psr-4": {
"Autopilot\\": "src/",
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}