-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
73 lines (73 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
66
67
68
69
70
71
72
73
{
"name": "madapaja/twig-module",
"description": "BEAR.Sunday Twig adapter module",
"keywords":[
"BEAR.Sunday",
"Twig",
"BEAR.Sunday module"
],
"license": "MIT",
"authors": [
{
"name": "Koji Iwasaki",
"email": "iwasaki@cresc.com"
}
],
"require": {
"php": "^8.1",
"bear/resource": "^1.23",
"bear/sunday": "^1.7",
"bear/app-meta": "^1.8",
"twig/twig": "^v3.15",
"ray/di": "^2.17",
"ray/aop": "^2.17",
"psr/log": "^3.0.2"
},
"require-dev": {
"mobiledetect/mobiledetectlib": "^3.74.3",
"phpunit/phpunit": "^9.6.21",
"doctrine/annotations": "^1.14.4 || ^2.0",
"bamarni/composer-bin-plugin": "^1.8.2"
},
"autoload":{
"psr-4":{
"Madapaja\\TwigModule\\": "src/"
}
},
"autoload-dev":{
"psr-4": {
"Madapaja\\TwigModule\\": [
"tests",
"tests/Fake/src"
]
},
"files": ["tests/test_path.php"]
},
"scripts": {
"test": ["phpunit"],
"tests": ["@cs", "@sa", "@test"],
"coverage": ["php -dzend_extension=xdebug.so -dxdebug.mode=coverage phpunit --coverage-text --coverage-html=build/coverage"],
"cs": ["phpcs --standard=phpcs.xml src"],
"cs-fix": ["phpcbf src tests"],
"sa": ["psalm", "phpstan"],
"clean": [
"phpstan clear-result-cache",
"psalm --clear-cache"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"bamarni/composer-bin-plugin": true
}
},
"extra": {
"bamarni-bin": {
"bin-links": true,
"forward-command": true
}
},
"suggest": {
"mobiledetect/mobiledetectlib": "MobileTwigModule"
}
}