-
Notifications
You must be signed in to change notification settings - Fork 29
/
composer.json
65 lines (65 loc) · 1.65 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
{
"name": "wyrihaximus/twig-view",
"description": "Twig powered View for CakePHP",
"type":"cakephp-plugin",
"license": "MIT",
"keywords": [
"twig",
"twig2",
"view",
"template",
"cakephp"
],
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "ceesjank@gmail.com",
"homepage": "https://wyrihaximus.net/"
}
],
"require": {
"php": "^7.2",
"cakephp/cakephp": "^4.0",
"jasny/twig-extensions": "^1.3",
"twig/markdown-extra": "^3.0",
"twig/twig": "^3.0"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^4.0",
"cakephp/debug_kit": "^4.0",
"jakub-onderka/php-console-highlighter": "^0.4.0",
"jakub-onderka/php-parallel-lint": "^1.0",
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
"WyriHaximus\\TwigView\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WyriHaximus\\TwigView\\Test\\": "tests/",
"App\\": "tests/test_app/"
}
},
"scripts": {
"cs-check": [
"phpcs -p src/ tests/"
],
"cs-fix": [
"phpcbf -p src/ tests/"
],
"stan": [
"phpstan.phar analyse src/",
"psalm.phar --show-info=false"
],
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^0.12.7 psalm/phar:~3.9.0 && mv composer.backup composer.json",
"test": [
"phpunit"
]
},
"config": {
"sort-packages": true
},
"prefer-stable": true
}