-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.21 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": "zfbase/zfe-files",
"description": "Единая точка загрузки и управления файлами для приложений на ZFE",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ilya Serdyuk",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Nikita Orlov",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Dmitriy Demin",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"ZfeFiles_": "library/"
}
},
"minimum-stability": "dev",
"require": {
"php": ">=7.4 || >8.0"
},
"scripts": {
"lint": "vendor/bin/php-cs-fixer fix --diff --dry-run",
"fix": "vendor/bin/php-cs-fixer fix"
},
"archive": {
"exclude": ["/assets", "/examples", "/tests"]
},
"suggest": {
"calcinai/php-imagick": "Используется для работы с изображениями."
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.19@dev"
}
}