-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.12 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.12 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
{
"name": "contentstack/contentstack",
"description": "Contentstack is a headless CMS with an API-first approach that puts content at the centre. It is designed to simplify the process of publication by separating code from content.",
"type": "library",
"license": "MIT",
"keywords": [
"Contentstack", "api"
],
"authors": [
{
"name": "Contentstack",
"homepage": "https://www.contentstack.com/",
"role": "Owner"
},
{
"name": "Uttam K Ukkoji",
"email": "uttamukkoji@gmail.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Contentstack\\": "src/"
},
"files": ["src/Support/helper.php"]
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpunit/php-code-coverage": "^10.0",
"code-lts/doctum": "^5.3"
},
"scripts": {
"generate:docs": "vendor/bin/doctum.php update ./config.php",
"test": "vendor/bin/phpunit"
},
"require": {
"php" : ">=5.5.0",
"contentstack/utils": "^1.0"
}
}