-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
35 lines (35 loc) · 992 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": "koodimonni/composer-dropin-installer",
"description": "Install packages or a few files from packages into custom paths without overwriting existing stuff.",
"license": "WTFPL",
"type": "composer-plugin",
"authors": [
{
"name": "Onni Hakala",
"email": "[email protected]",
"role": "Developer"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.2",
"composer-plugin-api": "^1.0 | ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"Koodimonni\\Composer\\": "src/"
}
},
"extra": {
"class": "Koodimonni\\Composer\\Dropin"
},
"scripts": {
"test": [
"composer install --working-dir=./tests/move/ && vendor/bin/phpunit ./tests/move/*.php",
"composer install --working-dir=./tests/copy/ && vendor/bin/phpunit ./tests/copy/*.php"
]
}
}