-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.12 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.12 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
{
"name": "mvccore/example-forms",
"type": "project",
"description": "MvcCore Example - Forms.",
"keywords": [],
"license": ["BSD-3-Clause"],
"authors": [{
"name": "Tom Flidr",
"homepage": "https://github.com/tomFlidr"
}],
"require": {
"php": ">=5.4.0",
"mvccore/mvccore": "^5.3",
"mvccore/ext-model-db": "^5.3",
"mvccore/ext-model-db-sqlite": "^5.3",
"mvccore/ext-cache-redis": "^5.3",
"mvccore/ext-form": "^5.3",
"mvccore/ext-form-field-text": "^5.3",
"mvccore/ext-form-field-numeric": "^5.3",
"mvccore/ext-form-field-date": "^5.3",
"mvccore/ext-form-field-selection": "^5.3",
"mvccore/ext-form-field-file": "^5.3",
"mvccore/ext-tool-mimetype-extension": "^5.3",
"mvccore/ext-form-field-button": "^5.3",
"mvccore/ext-view-helper-assets": "^5.3",
"mvccore/ext-auth-basic": "^5.3",
"mvccore/ext-debug-tracy-all": "^5.3",
"mvccore/ext-view-helper-dataurl": "^5.3",
"mvccore/ext-view-helper-formatdate": "^5.3",
"mvccore/ext-view-helper-truncate": "^5.3",
"mvccore/ext-tool-csp": "^5.3"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "App/"
}
}
}