-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 2 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 2 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
{
"name": "capile/studio",
"description": "Studio CMS: open data management",
"type": "library",
"license": "GPL-3.0-only",
"require": {
"php": ">=7.3",
"capile/tecnodesign": "^3.0.8",
"erusev/parsedown": "1.7.*",
"phpoffice/phpspreadsheet": "^5.0",
"foxy/foxy": "^1.1.0",
"bshaffer/oauth2-server-php": "^1.14",
"mustangostang/spyc": "^0.6.3",
"ext-mbstring": "*",
"phpmailer/phpmailer": "^6.10",
"mongodb/mongodb": "^2.1",
"mlocati/ip-lib": "^1.20",
"dragonmantank/cron-expression": "^3.4"
},
"extra": {
"foxy": true
},
"config": {
"allow-plugins": {
"foxy/foxy": true
},
"foxy": {
"enable-packages": {
"capile/tecnodesign": false
}
}
},
"autoload" : {
"psr-0": {
"Studio" : "src/",
"exclude-from-classmap": [ "src/" ]
}
},
"require-dev": {
"league/html-to-markdown": "4.8.*",
"codeception/codeception": "*",
"codeception/module-asserts": "^1.3",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-rest": "^1.3"
},
"scripts": {
"test": "vendor/bin/codecept run -v ",
"docker": "docker-compose -f data/docker/docker-compose.yml up",
"docker-test": "docker run -it --rm -v $PWD:/var/www/studio tecnodesign/studio:latest composer test",
"docker-pull": "docker-compose -f data/docker/docker-compose-test.yml pull",
"docker-build": "data/docker/build.php"
},
"bin": [ "studio", "studio-server" ],
"suggest" : {
"ext-dom": "*",
"geshi/geshi": "Allows syntax highlight in markdown text",
"setasign/fpdi": "Allows PDF parsing and composition",
"tecnickcom/tcpdf": "Allows PDF parsing and composition",
"ext-yaml": "Use YAML processing natively",
"dapphp/securimage": "Enables the captcha form field type"
}
}