-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathcomposer.json
73 lines (73 loc) · 2.14 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "pug-php/pug",
"replace": {
"kylekatarnls/jade-php": "self.version"
},
"description": "HAML-like template engine for PHP",
"keywords": ["pug", "jade", "minification", "template"],
"homepage": "https://github.com/pug-php/pug",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "kylekatarnls",
"homepage": "http://github.com/kylekatarnls",
"role": "Developer"
},
{
"name": "pug-php/pug contributors",
"homepage": "https://github.com/pug-php/pug/graphs/contributors",
"role": "Contributor"
},
{
"name": "phug-php/phug renderer contributors",
"homepage": "https://github.com/phug-php/renderer/graphs/contributors",
"role": "Contributor"
},
{
"name": "phug-php/phug compiler contributors",
"homepage": "https://github.com/phug-php/compiler/graphs/contributors",
"role": "Contributor"
},
{
"name": "pug-php/js-phpize contributors",
"homepage": "https://github.com/pug-php/js-phpize/graphs/contributors",
"role": "Contributor"
}
],
"prefer-stable": true,
"minimum-stability": "stable",
"require": {
"php": ">=5.5.0",
"js-phpize/js-phpize-phug": "^1.1 || ^2.0",
"nodejs-php-fallback/nodejs-php-fallback": "^1.3.1",
"phug/phug": "^1.6",
"phug/js-transformer-filter": "^1.0"
},
"extra": {
"npm": {
"pug-cli": "^1.0.0-alpha6"
},
"npm-confirm": {
"pug-cli": "It allows you to use the native JS pug engine instead of the default PHP one with the `pugjs` option set to `true`"
}
},
"require-dev": {
"phpunit/phpunit": ">=4.8.35 <10.0"
},
"bin": ["pug"],
"autoload": {
"psr-4": {
"": "./src"
},
"psr-0": {
"Pug\\": "src/",
"Jade\\": "src/"
}
},
"config": {
"allow-plugins": {
"nodejs-php-fallback/nodejs-php-fallback": true
}
}
}