-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 976 Bytes
/
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
{
"name": "php-task-runner/scss",
"description": "Provides a task runner command to compile SCSS to CSS.",
"keywords": ["task-runner"],
"type": "library",
"require": {
"php": "~7.1",
"consolidation/robo": "^1.4.11",
"openeuropa/task-runner": "^1.0.0-beta6",
"scssphp/scssphp": "~1.1"
},
"require-dev": {
"phpunit/phpunit": "~7 || ~8 || ~9",
"slevomat/coding-standard": "~6",
"squizlabs/php_codesniffer": "~3"
},
"license": "EUPL-1.2",
"authors": [
{
"name": "Pieter Frenssen",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"TaskRunner\\Scss\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"TaskRunner\\Scss\\Tests\\": "./tests/src/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}