-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
91 lines (91 loc) · 2.89 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
87
88
89
90
91
{
"name": "netglue/primo",
"description": "Mezzio integration for Prismic. Let’s call it ”Primo“…",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "George Steel",
"email": "[email protected]"
}
],
"keywords": ["prismic", "prismicio", "psr-11", "mezzio", "laminas"],
"homepage": "https://github.com/netglue/primo",
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": false
},
"platform": {
"php": "8.1.99"
}
},
"autoload": {
"psr-4": {
"Primo\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PrimoTest\\Unit\\": "test/Unit",
"PrimoTest\\Integration\\": "test/Integration"
}
},
"require": {
"php": "~8.1 || ~8.2 || ~8.3",
"ext-json": "*",
"dflydev/fig-cookies": "^2.0||^3.0",
"gsteel/dot": "^1.5",
"laminas/laminas-diactoros": "^2.25.2 || ^3.0",
"mezzio/mezzio": "^3.13",
"mezzio/mezzio-helpers": "^5.10",
"mezzio/mezzio-router": "^3.9",
"mezzio/mezzio-template": "^2.7",
"netglue/prismic-client": "^1.7",
"php-http/discovery": "^1.14.3",
"psr/cache": "^1 || ^2 || ^3",
"psr/container": "^1.1.1 || ^2.0.2",
"psr/event-dispatcher": "^1.0",
"psr/http-client": "^1.0.1",
"psr/http-factory": "^1.0.1",
"psr/http-message": "^1.0.1 || ^2.0",
"psr/http-server-handler": "^1.0.1",
"psr/http-server-middleware": "^1.0.1",
"webmozart/assert": "^1.11"
},
"require-dev": {
"doctrine/coding-standard": "^12.0.0",
"helmich/phpunit-psr7-assert": "^4.4.1",
"laminas/laminas-config-aggregator": "^1.14",
"laminas/laminas-servicemanager": "^3.22.1",
"mezzio/mezzio-fastroute": "^3.11",
"php-http/curl-client": "^2.3.1",
"php-http/mock-client": "^1.6",
"phpunit/phpunit": "^10.5.9",
"psalm/plugin-phpunit": "^0.19.0",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.8.1",
"symfony/options-resolver": "^6.4 || ^7",
"vimeo/psalm": "^5.20.0"
},
"extra": {
"laminas": {
"config-provider": "Primo\\ConfigProvider"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"static-analysis": "psalm --shepherd --stats"
},
"suggest": {
"netglue/prismic-cli": "for building your custom content model definitions for the Prismic.io API",
"laminas/laminas-cli": "for bootstrapping and configuring Symfony Console commands"
}
}