-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.32 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.32 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
44
45
46
47
48
{
"name": "phug/component",
"type": "library",
"keywords": ["phug", "pug", "html", "component"],
"description": "Extension for pug-php and phug to use components in templates",
"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/phug/issues",
"source": "https://github.com/phug-php/phug",
"docs": "http://phug-lang.com/docs"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.2",
"phug/phug": "^1.7.2 || ^2.0.1"
},
"require-dev": {
"phpunit/phpunit": "^8.5.52",
"js-phpize/js-phpize-phug": "^2.3.0",
"pug-php/pug": "^3.6.0",
"machy8/xhtml-formatter": "^1.0"
},
"autoload": {
"psr-4": {
"Phug\\Component\\": "./src/Phug/Component/"
}
},
"autoload-dev": {
"psr-4": {
"Phug\\Test\\Component\\": "./tests/Phug/Component/"
}
},
"config": {
"allow-plugins": {
"nodejs-php-fallback/nodejs-php-fallback": true
}
}
}