-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.07 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
52
53
54
55
56
{
"name": "fivefifteen/piler",
"version": "0.0.3",
"description": "A CLI tool written in PHP that compiles and minifies JavaScript and CSS/SCSS files.",
"authors": [
{
"name": "Five Fifteen",
"email": "hello@fivefifteen.com",
"homepage": "https://fivefifteen.com"
},
{
"name": "Kodie Grantham",
"email": "kodie.grantham@gmail.com",
"homepage": "https://kodieg.com"
}
],
"keywords": [
"frontend",
"front-end",
"front",
"end",
"javascript",
"js",
"css",
"scss",
"sass",
"style",
"stylesheet",
"build",
"compile",
"tool",
"file"
],
"homepage": "https://github.com/fivefifteen/piler",
"license": "MIT",
"bin": [
"bin/piler"
],
"autoload": {
"psr-4": {
"Piler\\": "src/"
}
},
"require": {
"php": "^8.1",
"adhocore/cli": "^1.9",
"matthiasmullie/minify": "^1.3",
"scssphp/scssphp": "^1.13"
},
"require-dev": {
"phpunit/phpunit": "^10.5"
},
"scripts": {
"test": "vendor/bin/phpunit tests --display-warnings --"
}
}