forked from prismicio-community/php-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.18 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
45
46
47
48
{
"name": "prismic/php-sdk",
"description": "PHP development kit for Prismic",
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Prismic\\": "src/Prismic"
}
},
"autoload-dev": {
"psr-4": {
"Prismic\\Test\\": "tests/Prismic"
}
},
"license": "Apache-2.0",
"minimum-stability": "stable",
"require": {
"php": ">=7.1",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"phpdocumentor/phpdocumentor": "dev-master",
"phpunit/phpunit": "^7",
"squizlabs/php_codesniffer": "^3.3"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"docs": "phpdoc",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-html build/report",
"serve": "php -S 0.0.0.0:8080 -t samples samples/document-explorer.php"
}
}