forked from slowprog/CopyFile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 858 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
{
"name": "slowprog/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": "[email protected]"
}
],
"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"
}
}