-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.85 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
{
"name": "netglue/expressive-prismic",
"description": "Module/Library for creating content driven websites with prismic.io and Zend Expressive",
"type": "module",
"license": "MIT",
"authors": [
{
"name": "George Steel",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"ExpressivePrismic\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ExpressivePrismicTest\\": "test/ExpressivePrismic"
}
},
"config": {
"sort-packages": true
},
"require": {
"php": ">=7.3",
"ext-json": "*",
"dflydev/fig-cookies": "^1.0|^2.0",
"laminas/laminas-diactoros": "^1.7.1 || ^2.0",
"laminas/laminas-zendframework-bridge": "^1.2",
"netglue/prismic-php-kit": "^4.2",
"zendframework/zend-expressive": "^3.0.1",
"zendframework/zend-expressive-helpers": "^5.0",
"zendframework/zend-expressive-zendviewrenderer": "^2.0",
"zendframework/zend-http": "^2.8",
"zendframework/zend-paginator": "^2.8"
},
"require-dev" : {
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "9.5",
"squizlabs/php_codesniffer": "^3.2",
"zendframework/zend-expressive-fastroute": "^3.0",
"zendframework/zend-servicemanager": "^3.3"
},
"extra": {
"zf": {
"config-provider": "ExpressivePrismic\\ConfigProvider"
}
},
"scripts": {
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-html build/report",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"check" : [
"@cs-check",
"@check-phpstan",
"@test"
],
"check-phpstan": "phpstan analyse --level max -c phpstan.neon src"
}
}