-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
73 lines (73 loc) · 2.13 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
{
"name": "cakephp/twig-view",
"description": "Twig powered View for CakePHP",
"type":"cakephp-plugin",
"license": "MIT",
"keywords": [
"twig",
"view",
"template",
"cakephp"
],
"authors": [
{
"name": "CakePHP Community",
"homepage": "https://github.com/cakephp/cakephp/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/cakephp/twig-view/issues",
"forum": "https://stackoverflow.com/tags/cakephp",
"irc": "irc://irc.freenode.org/cakephp",
"source": "https://github.com/cakephp/twig-view"
},
"require": {
"cakephp/cakephp": "^5.0.0",
"jasny/twig-extensions": "^1.3",
"twig/markdown-extra": "^3.0",
"twig/twig": "^3.11.1"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^5.0",
"cakephp/debug_kit": "^5.0",
"michelf/php-markdown": "^1.9",
"mikey179/vfsstream": "^1.6.10",
"phpunit/phpunit": "^10.5.5 || ^11.1.3"
},
"conflict": {
"wyrihaximus/twig-view": "*"
},
"autoload": {
"psr-4": {
"Cake\\TwigView\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cake\\TwigView\\Test\\": "tests/",
"TestApp\\": "tests/test_app/src/",
"TestTwigView\\": "tests/test_app/plugins/TestTwigView/src/"
}
},
"scripts": {
"cs-check": "phpcs --colors --parallel=16 -p src/ tests/",
"cs-fix": "phpcbf --colors --parallel=16 -p src/ tests/",
"phpstan": "tools/phpstan analyse",
"psalm": "tools/psalm --show-info=false",
"stan": [
"@phpstan",
"@psalm"
],
"phpstan-baseline": "tools/phpstan --generate-baseline",
"psalm-baseline": "tools/psalm --set-baseline=psalm-baseline.xml",
"stan-setup": "phive install",
"test": "phpunit"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"cakephp/plugin-installer": true
}
}
}