-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.54 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.54 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "beachcasts/airtable-sdk-php",
"type": "library",
"description": "Flexible PHP SDK for the Airtable API.",
"keywords": [
"php",
"sdk",
"airtable",
"beachcasts",
"airtable-sdk-php",
"client",
"psr7",
"guzzlehttp"
],
"homepage": "https://github.com/beachcasts/airtable-sdk-php",
"license": "MIT",
"authors": [
{
"name": "Beachcasts",
"email": "beachcasts@gmail.com",
"homepage": "https://github.com/beachcasts",
"role": "Developer"
},
{
"name": "Adam Culp",
"email": "adamculp@uws.net",
"homepage": "https://geekyboy.com",
"role": "Developer"
}
],
"require": {
"php": "~7.2",
"ext-json": "*",
"beberlei/assert": "^3.2",
"guzzlehttp/guzzle": "^6.5",
"guzzlehttp/psr7": "^1.6",
"psr/http-message": "^1.0"
},
"require-dev": {
"phpunit/phpunit": ">=8.0",
"squizlabs/php_codesniffer": "^3.0",
"vlucas/phpdotenv": "^4.1"
},
"autoload": {
"psr-4": {
"Beachcasts\\Airtable\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Beachcasts\\AirtableTests\\": "tests"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests"
}
}