-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
76 lines (76 loc) · 2.25 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
67
68
69
70
71
72
73
74
75
76
{
"name": "netglue/prismic-client",
"description": "PHP API Client for Prismic.io",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "George Steel",
"email": "[email protected]"
}
],
"keywords": ["prismic", "prismicio", "cms", "psr-18", "psr-7", "psr-17"],
"homepage": "https://github.com/netglue/prismic-client",
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true,
"php-http/discovery": false
},
"platform": {
"php": "8.1.99"
}
},
"autoload": {
"psr-4": {
"Prismic\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PrismicTest\\": "test/Unit",
"PrismicSmokeTest\\": "test/Smoke",
"Prismic\\Example\\": "samples"
}
},
"require": {
"php": "~8.1 || ~8.2 || ~8.3 || ~8.4",
"ext-json": "*",
"laminas/laminas-escaper": "^2.9",
"php-http/discovery": "^1.18.0",
"psr/cache": "^1.0.0 || ^2.0.0 || ^3.0.0",
"psr/http-client-implementation": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0 || ^2.0"
},
"require-dev": {
"ext-curl": "*",
"doctrine/coding-standard": "^12.0",
"laminas/laminas-diactoros": "^3.5.0",
"php-http/cache-plugin": "^2.0.1",
"php-http/curl-client": "^2.3.3",
"php-http/mock-client": "^1.6.1",
"phpunit/phpunit": "^10.5.38",
"psalm/plugin-phpunit": "^0.19.0",
"roave/security-advisories": "dev-latest",
"symfony/cache": "^6.4.13 || ^7.0",
"vimeo/psalm": "^5.26.1"
},
"conflict": {
"php-http/httplug": "<2.4.1",
"php-http/promise": "<1.3.1"
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"psalm": "psalm",
"test": "phpunit --colors=always --testsuite=\"Unit Tests\"",
"serve": "php -S 0.0.0.0:8080 -t samples samples/document-explorer.php"
}
}