-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 710 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 710 Bytes
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
{
"name": "pug/bemto",
"description": "Smart mixins for writing BEM in Pug",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Kyle Katarn",
"email": "kylekatarnls@gmail.com"
}
],
"require": {
"php": ">=7.0",
"phug/compiler": "^1.0.0 || ^2.0.0",
"phug/formatter": "^1.0.0 || ^2.0.0"
},
"require-dev": {
"phug/phug": "^1.0.0",
"phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.52",
"machy8/xhtml-formatter": "^1.0",
"js-phpize/js-phpize-phug": "^2.1"
},
"minimum-stability": "stable",
"autoload": {
"psr-0": {
"PhugBemto": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Bemto\\": "tests/"
}
}
}