forked from icanhazstring/tempa-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 888 Bytes
/
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
{
"name": "icanhazstring/tempa-php",
"description": "Template file parsing library",
"type": "library",
"require": {
"php": "~7.1",
"symfony/console": "^2.8|^3.2|^4.0|^5.0"
},
"require-dev": {
"adlawson/vfs": "^0.12.1",
"squizlabs/php_codesniffer": "^2.7",
"phpunit/phpunit": "^6.3"
},
"license": "MIT",
"authors": [
{
"name": "icanhazstring",
"email": "[email protected]"
}
],
"bin": [
"bin/tempa"
],
"autoload": {
"psr-4": {
"Tempa\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tempa\\Test\\": "test/Tempa/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"cs": "phpcs --standard=PSR2 src/ && phpcs --standard=PSR2 --ignore=test/Demo test/"
}
}