-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
35 lines (35 loc) · 900 Bytes
/
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
{
"name": "mariusbuescher/node-composer",
"type": "composer-plugin",
"description": "Installs composer nodejs or/and npm in vendor/",
"license": "MIT",
"keywords": [
"node.js",
"npm",
"yarn",
"frontend",
"javascript"
],
"homepage": "https://github.com/mariusbuescher/node-composer",
"authors": [
{
"name": "Marius Büscher",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"MariusBuescher\\NodeComposer\\": "src/"
}
},
"require": {
"php": ">=7.1",
"composer/composer": "^1.4 || ^2.0",
"composer-plugin-api": "^1.0 || ^2.0",
"symfony/process": "^2.7 || >=3.0",
"symfony/filesystem": ">=2.7"
},
"extra": {
"class": "MariusBuescher\\NodeComposer\\NodeComposerPlugin"
}
}