generated from gsteel/php-template-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
86 lines (86 loc) · 2.48 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
77
78
79
80
81
82
83
84
85
86
{
"name": "netglue/prismic-doctype-client",
"type": "library",
"description": "Prismic Custom Type API Client",
"keywords": [],
"homepage": "https://github.com/netglue/prismic-doctype-client",
"license": "MIT",
"authors": [
{
"name": "George Steel",
"email": "george@net-glue.co.uk"
}
],
"require": {
"php": "~8.1 || ~8.2.0 || ~8.3 || ~8.4",
"ext-json": "*",
"php-http/discovery": "^1.14.1",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "*",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0 || ^2.0",
"symfony/http-client": "^6.2 || ^7.0",
"webmozart/assert": "^1.10"
},
"require-dev": {
"ext-curl": "*",
"doctrine/coding-standard": "^12.0",
"infection/infection": "^0.27.11",
"laminas/laminas-diactoros": "^3.5.0",
"php-http/curl-client": "^2.3.2",
"phpunit/phpunit": "^10.5.38",
"psalm/plugin-phpunit": "^0.19.0",
"react/child-process": "^0.6.5",
"react/http": "^1.10",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.10.3",
"vimeo/psalm": "^5.26.1"
},
"conflict": {
"php-http/httplug": "<2.4.1"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"ergebnis/composer-normalize": true,
"php-http/discovery": true
},
"platform": {
"php": "8.1.99"
}
},
"extra": {
"composer-normalize": {
"indent-size": 4,
"indent-style": "space"
}
},
"autoload": {
"psr-4": {
"Prismic\\DocumentType\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Prismic\\DocumentType\\Test\\Unit\\": "test/Unit",
"Prismic\\DocumentType\\Test\\Integration\\": "test/Integration",
"Prismic\\DocumentType\\Test\\Smoke\\": "test/Smoke"
}
},
"scripts": {
"check": [
"phpcs",
"psalm --stats",
"phpunit",
"infection --configuration=infection-custom.json"
],
"clean": [
"composer normalize",
"psalm --generate-baseline",
"phpcbf"
],
"static-analysis": "psalm --shepherd "
}
}