forked from ZF-Commons/ZfcTwig
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
80 lines (80 loc) · 2.15 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
{
"name": "kokspflanze/zfc-twig",
"description": "Laminas/Zend Framework Module that provides a Twig rendering strategy and extensions to render actions or trigger events from your templates",
"type": "library",
"keywords": [
"twig",
"twig2",
"twig3",
"module",
"laminas",
"zf",
"zf3"
],
"license": "BSD-3-Clause",
"homepage": "https://github.com/kokspflanze/ZfcTwig/",
"authors": [
{
"name": "Kyle Spraggs",
"email": "[email protected]",
"homepage": "http://www.spiffyjr.me/"
},
{
"name": "Cosmin Harangus",
"email": "[email protected]",
"homepage": "http://www.zendexperts.com/"
}
],
"require": {
"php": "^7.3 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"twig/twig": "^3.3.4",
"laminas/laminas-mvc": "^3.0",
"laminas/laminas-view": "^2.7",
"laminas/laminas-servicemanager": "^3.0",
"laminas/laminas-mvc-plugin-flashmessenger": "^1.0"
},
"autoload": {
"psr-4": {
"ZfcTwig\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ZfcTwigTest\\": "test/"
}
},
"require-dev": {
"laminas/laminas-navigation": "^2.7",
"laminas/laminas-modulemanager": "^2.7",
"phpunit/phpunit": "^9.5.9",
"laminas/laminas-coding-standard": "^2.3.0"
},
"replace": {
"zf-commons/zfc-twig": "self.version"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"laminas": {
"module": "ZfcTwig"
},
"branch-alias": {
"dev-release/1.4": "1.4-dev",
"dev-master": "4.x-dev"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always --configuration phpunit.xml.dist"
}
}