-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
45 lines (45 loc) · 1.18 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
{
"name": "civicrm/composer-compile-lib",
"description": "Small library of compilation helpers",
"license": "MIT",
"authors": [
{
"name": "CiviCRM",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": {
"CCL": ""
},
"psr-4": {
"CCL\\": ["src/"]
}
},
"config": {
"platform": {
"php": "7.4"
},
"allow-plugins": {
"civicrm/composer-compile-plugin": true
}
},
"require": {
"civicrm/composer-compile-plugin": "~0.19 || ~1.0",
"symfony/filesystem": "~2.8 || ~3.4 || ~4.0 || ~5.0 || ~6.0 || ~7.0",
"scssphp/scssphp": "^1.8.1",
"padaliyajay/php-autoprefixer": "~1.2",
"tubalmartin/cssmin": "^4.1"
},
"extra": {
"compile": [
{
"title": "Generate <comment>CCL</comment> wrapper functions",
"run": ["@php-method \\CCL\\Tasks::template"],
"tpl-file": "src/StubsTpl.php",
"tpl-items": {"CCL.php": true},
"watch-files": ["src/StubsTpl.php", "src/Functions.php"]
}
]
}
}