-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathcomposer.json
50 lines (50 loc) · 1.23 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
{
"name": "prismic/php-sdk",
"description": "PHP development kit for Prismic",
"config": {
"sort-packages": true,
"platform": {
"php": "8.0"
}
},
"autoload": {
"psr-4": {
"Prismic\\": "src/Prismic"
}
},
"autoload-dev": {
"psr-4": {
"Prismic\\Test\\": "tests/Prismic"
}
},
"license": "Apache-2.0",
"minimum-stability": "stable",
"require": {
"php": "~8.0 || ~8.1",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7.5"
},
"require-dev": {
"phpspec/prophecy": "^1.15",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "^3.3"
},
"suggest": {
"ext-apcu": "*"
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"docs": "php phpdoc.phar",
"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"
}
}