forked from slowprog/CopyFile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 961 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
36
37
{
"name": "skywire/composer-copy-file",
"description": "Composer script copying your files after install",
"keywords": ["copy file"],
"homepage": "https://github.com/SlowProg/composer-copy-file",
"license": "MIT",
"authors": [
{
"name": "Andrey Tyshev",
"email": "slowprog@gmail.com"
},
{
"name": "Skywire Tech Team",
"email": "tech@skywire.co.uk"
}
],
"require": {
"php": ">=5.6"
},
"require-dev": {
"composer/composer": "1.0.*@dev",
"symfony/filesystem": "~2.7",
"symfony/finder": "~2.7",
"phpunit/phpunit": "5.7.27",
"mikey179/vfsstream": "~1",
"php-mock/php-mock-phpunit": "~1"
},
"autoload": {
"psr-4": { "SlowProg\\CopyFile\\": "" }
},
"autoload-dev": {
"classmap": [ "tests/" ]
},
"scripts": {
"test": "phpunit --verbose"
}
}