-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
46 lines (46 loc) · 1.31 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
{
"name": "bem/bh",
"description": "Template engine. BEMJSON -> HTML processor. PHP port of https://github.com/bem/bh",
"keywords": [
"bem",
"bh",
"bemjson"
],
"license": "MIT",
"authors": [
{
"name": "Alexej Yaroshevich",
"email": "alex@qfox.ru"
}
],
"support": {
"issues": "https://github.com/bem/bh-php/issues",
"forum": "http://ru.bem.info/forum/",
"gitter": "https://gitter.im/bem/talk",
"irc": "irc://irc.gitter.im/bem/talk"
},
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"phpunit/phpunit": "4.3.*",
"phpunit/php-invoker": "1.*@stable"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": { "BEM\\": "src/" }
},
"scripts": {
"cov-install": "composer require -n phpunit/php-code-coverage:~2.0@stable satooshi/php-coveralls:~0.6@stable --dev && mkdir -p build/logs",
"cov": "phpunit --coverage-clover ./build/logs/clover.xml --coverage-html build/report && COVERALLS_RUN_LOCALLY=1 COVERALLS_REPO_TOKEN=1 coveralls -v --ansi --dry-run",
"test": "phpunit"
},
"archive": {
"exclude": [
"/*",
"!/LICENSE",
"!/README.md",
"!/src"
]
}
}