-
Notifications
You must be signed in to change notification settings - Fork 28
/
composer.json
47 lines (47 loc) · 1.16 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
{
"name": "mouf/nodejs-installer",
"type": "composer-plugin",
"description": "An installer package that let's you install NodeJS and NPM as a Composer dependency.",
"keywords": ["installer", "nodejs", "npm"],
"homepage": "http://mouf-php.com/packages/mouf/nodejs-installer",
"license": "MIT",
"authors": [
{
"name": "David Négrier",
"email": "d.negrier@thecodingmachine.com",
"homepage": "http://mouf-php.com"
}
],
"require": {
"php": ">=5.3.0",
"composer-plugin-api": "^1.0 || ^2.0",
"ext-openssl": "*"
},
"require-dev": {
"composer/composer": "^1.7",
"phpunit/phpunit": "^7.4"
},
"autoload": {
"psr-4": {
"Mouf\\NodeJsInstaller\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mouf\\NodeJsInstaller\\": "tests/"
}
},
"extra" : {
"class": ["Mouf\\NodeJsInstaller\\NodeJsPlugin"],
"mouf": {
"logo": "node-js.png"
}
},
"scripts": {
"test": [
"phpunit"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}