-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 2.17 KB
/
composer.json
File metadata and controls
76 lines (76 loc) · 2.17 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "zfbase/zfe",
"description": "ZFE – платформа для построения редакторских интерфейсов",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ilya Serdyuk",
"email": "ilya@serdyuk.pro",
"role": "Developer"
},
{
"name": "Dmitriy Demin",
"email": "dma01x@gmail.com",
"role": "Developer"
},
{
"name": "Dmitriy Stepanov",
"email": "stepdi@gmail.com",
"role": "Developer"
},
{
"name": "Nikita Orlov",
"email": "n.dezz.orlov@gmail.com",
"role": "Developer"
},
{
"name": "Andrey Polyakov",
"email": "webshendor@gmail.com",
"role": "Developer"
},
{
"name": "Alexey Sumin",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"ZFE_": "library/"
},
"files": ["library/global.php"]
},
"require": {
"php": ">=7.4 || >= 8.0",
"ext-json": "*",
"ext-bcmath": "*",
"shardj/zf1-future": "^1.14",
"zfbase/doctrine1": "^1.2",
"zfbase/zend1-bootstrap3": "~1",
"zfbase/zfe-files": "^1.2.19",
"jdorn/sql-formatter": "~1",
"judev/php-htmltruncator": "^1.1",
"greenlion/php-sql-parser": "^4.3",
"ltd-beget/sphinx-configuration-tokenizer": "~1.0.5",
"foolz/sphinxql-query-builder": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.19@dev"
},
"suggest": {
"phpoffice/phpspreadsheet": "PhpOffice\\PhpSpreadsheet for SendExcel2007 action helper",
"phpoffice/phpword": "PhpOffice\\PhpWord dev-FBnil-patch-blocks for SendWord2007 & SendWord2007Template action helpers"
},
"include-path": ["library/"],
"archive": {
"exclude": ["/assets", "/src", "/test"]
},
"scripts": {
"lint": "php-cs-fixer fix --diff --dry-run",
"fix": "php-cs-fixer fix"
},
"bin": [
"bin/zfe-manage-tasks",
"bin/zfe-tools"
]
}