-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.01 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.01 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
{
"name": "mvccore/example-cdcol",
"type": "project",
"description": "MvcCore Example - CD collection - classic CRUD example with default SQLite database and authentication.",
"keywords": [
"mvccore",
"framework",
"crud",
"crud sample",
"crud application",
"cd albums",
"cds",
"albums",
"cd collection",
"authentication",
"auth",
"login",
"credentials"
],
"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-form": "^5.3",
"mvccore/ext-form-field-text": "^5.3",
"mvccore/ext-form-field-numeric": "^5.3",
"mvccore/ext-form-field-button": "^5.3",
"mvccore/ext-auth-basic": "^5.3",
"mvccore/ext-view-helper-assets": "^5.3",
"mvccore/ext-debug-tracy-all": "^5.3"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "App/"
}
}
}