-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
45 lines (45 loc) · 1.44 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
{
"name": "rkit/filemanager-yii2",
"description": "FileManager for Yii2",
"keywords": ["yii2", "extension", "file manager", "manager", "upload", "resize", "files"],
"homepage": "https://github.com/rkit/filemanager-yii2",
"type": "yii2-extension",
"license": "MIT",
"authors": [
{
"name": "Igor Romanov",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/rkit/filemanager-yii2/issues?state=open",
"source": "https://github.com/rkit/filemanager-yii2"
},
"require": {
"yiisoft/yii2": "^2.0"
},
"scripts": {
"phpdoc": "phpdoc",
"test-prepare": [
"php tests/yii migrate --migrationPath=@tests/migrations/ --interactive=0"
],
"test": "phpunit --colors=always",
"test-coverage": "phpunit --coverage-html=tests/tmp/coverage.html --colors=always",
"test-coverage-open": "open tests/tmp/coverage.html/index.html"
},
"autoload": {
"psr-4": {
"rkit\\filemanager\\": "src"
}
},
"require-dev": {
"intervention/image": "^2.3.2",
"phpunit/phpunit": "^4.8",
"phpunit/dbunit": "^1.4",
"phpdocumentor/phpdocumentor": "^2.8.0",
"cvuorinen/phpdoc-markdown-public": "^0.1.2",
"league/flysystem": "^1.0",
"creocoder/yii2-flysystem": "^0.8.1",
"squizlabs/php_codesniffer": "3.0.0RC1"
}
}