forked from gsteel/php-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (60 loc) · 1.6 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "netglue/prismic-php-kit",
"description": "Unofficial PHP development kit for prismic.io",
"type": "library",
"keywords": ["prismic", "prismicio", "cms"],
"homepage": "https://github.com/netglue/prismic-php-kit",
"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",
"psr/cache": "^1.0",
"symfony/cache": "^4",
"zendframework/zend-escaper": "^2.6"
},
"suggest": {
"ext-apc": "APCu is used as the default cache if it is available"
},
"replace": {
"prismic/php-sdk": "*"
},
"require-dev": {
"phpstan/phpstan": "^0.9.2",
"phpunit/phpunit": "^7",
"squizlabs/php_codesniffer": "^3.2"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-html build/report",
"analyse": "phpstan analyse --level=max src",
"serve": "php -S 0.0.0.0:8080 -t samples samples/document-explorer.php"
}
}