-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (45 loc) · 1.33 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
{
"name": "germania-kg/twigserviceprovider",
"description": "Pimple Service Provider for Twig templating engine",
"keywords": ["Pimple", "Twig", "service provider", "serviceprovider", "depedency injection"],
"license": "MIT",
"authors": [{
"name": "Carsten Witt",
"email": "carstenwitt@germania-kg.de",
"role": "Developer"
}],
"autoload": {
"psr-4": {
"Germania\\TwigServiceProvider\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests/src"
}
},
"require": {
"php": "^7.3|^8.0",
"pimple/pimple": "^3.0",
"twig/twig": "^2.0|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"phpspec/prophecy-phpunit": "^2.0",
"php-coveralls/php-coveralls": "^2.0",
"friendsofphp/php-cs-fixer": "^2.0",
"spatie/phpunit-watcher": "^1.0",
"phpstan/phpstan": "^0.12"
},
"scripts": {
"phpunit": "phpunit --coverage-text",
"phpstan": "phpstan analyse src tests --level 2",
"phpcs": "php-cs-fixer fix --verbose --diff --dry-run src/",
"phpcs-apply": "php-cs-fixer fix --verbose --diff src/",
"watch": "phpunit-watcher watch",
"test": [
"@phpcs",
"@phpunit"
]
}
}