-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
44 lines (44 loc) · 1.01 KB
/
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
38
39
40
41
42
43
44
{
"name": "kontent-ai/delivery-sdk-php",
"type": "library",
"license": "MIT",
"description": "Kontent.ai Delivery SDK for PHP",
"keywords": [
"delivery",
"content-delivery",
"headless",
"cms",
"kontent-ai",
"headless-cms"
],
"homepage": "https://kontent.ai/",
"authors": [
{
"name": "Kontent.ai DevRel",
"email": "[email protected]"
},
{
"name": "Stephen Rushing",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0 || ^8.0",
"nategood/httpful": "^0.2.20 || ^0.3 || ^1.0",
"kub-at/php-simple-html-dom-parser": "^1.9"
},
"require-dev": {
"phpdocumentor/shim": "^3.3",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Kontent\\Ai\\": "src/Kontent/Ai"
}
},
"config": {
"allow-plugins": {
"phpdocumentor/shim": true
}
}
}