-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.12 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.12 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
{
"name": "phug/watcher",
"type": "library",
"keywords": ["directory", "watcher", "phug", "pug"],
"description": "Watcher for Phug, Pug (ex-Jade) PHP port, HTML template engine structured by indentation",
"license": "MIT",
"homepage": "http://phug-lang.com",
"authors": [
{
"name": "KyleKatarn",
"email": "jade-php@selfbuild.fr",
"homepage": "http://github.com/kylekatarnls"
}
],
"support": {
"email": "support@phug-lang.com",
"issues": "https://github.com/phug-php/watcher/issues",
"source": "https://github.com/phug-php/watcher",
"docs": "http://phug-lang.com/docs"
},
"minimum-stability": "stable",
"require": {
"php": ">=5.5.0",
"jasonlewis/resource-watcher": "^1.2.0"
},
"require-dev": {
"phug/dev-tool": "^0.1.0",
"phug/phug": "^0.3.0"
},
"autoload": {
"psr-4": {
"": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Phug\\Test\\": "tests/Phug/"
}
},
"bin": ["watcher"],
"suggest": {}
}