Skip to content

Commit 9ac15e4

Browse files
committed
Create composer manifest.
0 parents  commit 9ac15e4

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/composer.lock
2+
/vendor/

composer.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"name": "php-task-runner/scss",
3+
"description": "Provides a task runner command to compile SCSS to CSS.",
4+
"keywords": ["task-runner"],
5+
"type": "library",
6+
"require": {
7+
"php": ">=7.1",
8+
"consolidation/robo": "^1.4.11",
9+
"openeuropa/task-runner": "dev-master",
10+
"scssphp/scssphp": "~1.1"
11+
},
12+
"require-dev": {
13+
"phpunit/phpunit": "~6 || ~7 || ~8 || ~9",
14+
"squizlabs/php_codesniffer": "^3.0@dev"
15+
},
16+
"license": "EUPL-1.2",
17+
"authors": [
18+
{
19+
"name": "Pieter Frenssen",
20+
"email": "[email protected]"
21+
}
22+
],
23+
"autoload": {
24+
"psr-4": {
25+
"TaskRunner\\Scss\\": "./src/"
26+
}
27+
},
28+
"autoload-dev": {
29+
"psr-4": {
30+
"TaskRunner\\Scss\\Tests\\": "./tests/"
31+
}
32+
},
33+
"config": {
34+
"sort-packages": true
35+
},
36+
"minimum-stability": "dev",
37+
"prefer-stable": true
38+
}

0 commit comments

Comments
 (0)