-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·55 lines (55 loc) · 1.5 KB
/
Copy pathcomposer.json
File metadata and controls
executable file
·55 lines (55 loc) · 1.5 KB
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
{
"name": "oxcom/zend-twig",
"description": "ZendTwig is a module that integrates the Twig template engine with Zend Framework 3.",
"type": "library",
"license": "MIT",
"keywords": [
"twig",
"module",
"zf3",
"zf"
],
"homepage": "https://github.com/OxCom/zf3-twig",
"require": {
"php": ">=7.3",
"twig/twig": "^2.12|^v3.11.3",
"laminas/laminas-modulemanager": "^2.7",
"laminas/laminas-servicemanager": "^3.2",
"laminas/laminas-mvc": "^3.0",
"laminas/laminas-view": "^2.8",
"laminas/laminas-eventmanager": "^3.1",
"laminas/laminas-mvc-plugin-flashmessenger": "^1.0"
},
"autoload": {
"psr-4": {
"ZendTwig\\" : "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"require-dev": {
"laminas/laminas-test": "^3.5 || ^4.0",
"laminas/laminas-i18n": "^2.7",
"laminas/laminas-mvc-i18n": "^1.0",
"laminas/laminas-navigation": "^2.8",
"laminas/laminas-server": "^2.7",
"squizlabs/php_codesniffer": "^3.3",
"phpunit/phpunit": "^9.0 || ^10.0 || ^11.0"
},
"authors": [
{
"name": "OxCom",
"email": "lancer.oxcom@gmail.com"
}
],
"scripts": {
"test": [
"composer install",
"./vendor/bin/phpcs --standard=psr2 src/ tests/ZendTwig/ tests/Fixture/",
"./vendor/bin/phpunit"
]
}
}