-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.3 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.3 KB
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
{
"name": "phug/dev-tool",
"type": "library",
"keywords": [
"phug", "dev tools", "template", "dialect", "html", "views",
"render", "presentation", "jade", "pug", "html", "php", "phtml"
],
"description": "Phug unit tests, coverage and code style tools",
"license": "MIT",
"homepage": "http://phug-lang.com",
"authors": [
{
"name": "Torben Koehn",
"email": "torben@talesoft.codes"
},
{
"name": "KyleKatarn",
"email": "jade-php@selfbuild.fr",
"homepage": "http://github.com/kylekatarnls"
}
],
"support": {
"email": "support@phug-lang.com",
"issues": "https://github.com/phug-php/dev-tool/issues",
"source": "https://github.com/phug-php/dev-tool",
"docs": "http://phug-lang.com/docs"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=5.5.0",
"phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.0 || ^8.0",
"phpunit/php-code-coverage": "^2.2 || ^4.0 || ^5.2 || ^6.0 || ^7.0",
"squizlabs/php_codesniffer": "^2.8 || ^3.0",
"symfony/console": "^3.2 || ^4.0 || ^5.0"
},
"autoload": {
"psr-4": {
"": "./src"
}
},
"bin": ["bin/phug-dev"]
}