composer.json
1.45 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": "wyrihaximus/twig-view",
"description": "Twig powered View for CakePHP3",
"type":"cakephp-plugin",
"license": "MIT",
"keywords": [
"twig",
"view",
"cakephp",
"cakephp3"
],
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "ceesjank@gmail.com",
"homepage": "http://wyrihaximus.net/"
}
],
"require": {
"php": "^5.6 || ^7.0",
"ajgl/breakpoint-twig-extension": "^0.3.0",
"aptoma/twig-markdown": "^2.0",
"asm89/twig-cache-extension": "^1.0",
"cakephp/cakephp": "^3.6",
"jasny/twig-extensions": "^1.0",
"twig/twig": "^1.27",
"umpirsky/twig-php-function": "0.1"
},
"require-dev": {
"cakephp/bake": "^1.5",
"cakephp/debug_kit": "^3.0",
"phake/phake": "^1.0.4",
"phpunit/phpunit": "^5.7.14",
"squizlabs/php_codesniffer": "^1.5.6",
"wyrihaximus/phpunit-class-reflection-helpers": "dev-master"
},
"autoload": {
"psr-4": {
"WyriHaximus\\TwigView\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WyriHaximus\\CakePHP\\Tests\\TwigView\\": "tests/",
"App\\": "tests/test_app/",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
},
"config": {
"sort-packages": true,
"platform": {
"php": "5.6.0"
}
}
}