-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.03 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "itsahappymedium/fec",
"description": "A PHP Command Line tool that makes it easy to compile, concat, and minify front-end Javascript and CSS/SCSS dependencies.",
"keywords": [
"browsersync",
"cli",
"css",
"compile",
"front",
"end",
"minify",
"javascript",
"js",
"scss",
"watch"
],
"authors": [
{
"name": "Happy Medium",
"email": "developers@itsahappymedium.com",
"homepage": "https://itsahappymedium.com"
},
{
"name": "Kodie Grantham",
"email": "kodie.grantham@gmail.com",
"homepage": "https://kodieg.com"
}
],
"homepage": "https://github.com/itsahappymedium/fec",
"license": "MIT",
"bin": [
"bin/fec"
],
"autoload": {
"files": [
"watcher.php"
]
},
"scripts": {
"test": "vendor/bin/phpunit tests"
},
"require": {
"php": "^7.3|^8.0",
"matthiasmullie/minify": "^1.3",
"scssphp/scssphp": "^1.7",
"splitbrain/php-cli": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
}
}