-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 906 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 906 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
35
36
37
{
"name": "eugene-matvejev/css-compiler",
"description": "compiles SASS and LESS assets on composer's callback",
"type": "lib",
"license": "MIT",
"authors": [
{
"name": "Eugene Matvejev",
"email": "eugene.matvejev@gmail.com"
}
],
"autoload": {
"psr-4": {
"EM\\CssCompiler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EM\\Tests\\PHPUnit\\": "tests/phpunit"
},
"classmap": [
"tests/shared-enviroment/IntegrationTestSuite.php"
]
},
"config": {
"bin-dir": "bin/"
},
"require": {
"php": ">= 5.5.9 || 7.0.0 - 7.0.4 || >= 7.0.6",
"eugene-matvejev/compass": "^0.1",
"leafo/lessphp": "^0.5"
},
"require-dev": {
"composer/composer": "^1.1",
"phpunit/phpunit": "^4.8 || ^5.3"
}
}