forked from fastly/fastly-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 864 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
37
{
"name": "fastly/fastly",
"description": "A PHP client library for interacting with most facets of the Fastly API.",
"keywords": [
"fastly",
"php",
"sdk",
"rest",
"api"
],
"homepage": "https://github.com/fastly/fastly-php",
"license": "MIT",
"authors": [
{
"name": "Fastly",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]"
},
"require": {
"php": ">=7.3",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^6.0 || ^7.3",
"guzzlehttp/psr7": "^1.7 || ^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.12"
},
"autoload": {
"psr-4": { "Fastly\\" : "lib/" }
}
}