-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·49 lines (45 loc) · 1.23 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
{
"name": "germania-kg/twig-requesthandler",
"description": "PSR-15 RequestHandler for rendering Twig templates",
"keywords": [ "twig", "psr15", "requesthandler", "templates"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Carsten Witt",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Germania\\TwigRequestHandler\\": "src"
}
},
"require": {
"php": "^7.2|^8.0",
"twig/twig": "^2.0|^3.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0"
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests/src"
}
},
"require-dev": {
"slim/psr7": "^1.2",
"phpunit/phpunit": "^9.0",
"phpspec/prophecy-phpunit": "^2.0",
"php-coveralls/php-coveralls": "^2.0",
"friendsofphp/php-cs-fixer": "^2.0"
},
"scripts": {
"phpcs": "php-cs-fixer fix --verbose --diff --dry-run src/",
"phpcs-apply": "php-cs-fixer fix --verbose --diff src/",
"phpunit": "phpunit --colors=auto --coverage-text",
"test": [
"@phpcs",
"@phpunit"
]
}
}