-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
36 lines (36 loc) · 863 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": "guym4c/airtable-client",
"description": "PHP Airtable API client",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/guym4c/airtable-client",
"keywords": ["airtable", "api", "client"],
"authors": [
{
"name": "Guy Mac",
"email": "hello@guymac.eu",
"role": "Developer"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Guym4c\\Airtable\\": "src/"
}
},
"require": {
"guzzlehttp/guzzle": "^7.0.1",
"ext-json": "*",
"davedevelopment/stiphle": "^0.9.2",
"shrikeh/teapot": "^2.3",
"doctrine/cache": "^1.8"
},
"require-dev": {
"phpunit/phpunit": "^9.0.1"
},
"config": {
"platform": {
"php": "7.4.0"
}
}
}