-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.22 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
{
"name": "ecocomposer/ecocomposer",
"description": "EcoComposer is a frontend library that aims to generate the least possible code to make your components fully functional.",
"keywords": [
"frontend",
"javascript",
"library",
"scss"
],
"type": "library",
"homepage": "https://github.com/lperamo/otra",
"license": "X11",
"authors": [
{
"name": "Lionel Péramo",
"email": "contact@lionel-peramo.com",
"homepage": "https://lionel-peramo.com"
}
],
"bin" : ["bin/ecocomposer.php"],
"config": {
"bin-dir": "bin"
},
"require": {
"php": ">=8.0.0",
"ext-curl": "*",
"ext-json": "*"
},
"scripts": {
"ecocomposer-install": "@php vendor/ecocomposer/ecocomposer/ecoComposer.php i",
"ecocomposer-manager-update" : "@composer update otra/otra --no-cache --no-autoloader",
"ecocomposer-update" : "@php vendor/ecocomposer/ecocomposer/ecoComposer.php u",
"post-install-cmd": "@ecocomposer-install"
},
"scripts-descriptions": {
"ecocomposer-install": "Installs EcoComposer.",
"ecocomposer-manager-update" : "Updates EcoComposer manager without autoloader files and without using the cache.",
"ecocomposer-update" : "Updates EcoComposer."
}
}