forked from capile/tecnodesign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.63 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
46
47
48
49
50
{
"name": "capile/tecnodesign",
"description": "PHP Framework",
"type": "library",
"license": "GPL-3.0-only",
"require": {
"php": ">=7.2",
"erusev/parsedown": "1.7.*",
"leafo/lessphp": "^0.5.0",
"scssphp/scssphp": "^1.1.1",
"matthiasmullie/minify": "^1.3.61",
"phpoffice/phpspreadsheet": "^1.6.0",
"swiftmailer/swiftmailer": "^5.4.12 < 6.0",
"foxy/foxy": "^1.1.0",
"bshaffer/oauth2-server-php": "^1.11",
"mustangostang/spyc": "^0.6.2",
"ext-mbstring": "*",
"jumbojett/openid-connect-php": "^0.9.2"
},
"extra": {
"foxy": true
},
"autoload" : {
"psr-0": {
"tdz" : "",
"exclude-from-classmap": [ "src/" ]
}
},
"require-dev": {
"mustangostang/spyc": "^0.6.2",
"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": "./studio-server && vendor/bin/codecept run -v "
},
"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",
"mustangostang/spyc" : "Allows YAML processing when native support is not available",
"ext-yaml": "Use YAML processing natively",
"dapphp/securimage": "Enables the captcha form field type"
}
}