-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 1.17 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
{
"name": "ride/web-cms-orm",
"description": "ORM integration with the CMS application of the Ride framework",
"license": "MIT",
"authors": [
{
"name": "Joris Vandeweerd",
"email": "[email protected]"
},
{
"name": "Brent Roose",
"email": "[email protected]"
}
],
"require": {
"ride/app": "^1.0.0",
"ride/app-orm": "^1.0.0",
"ride/lib-cms": "^1.0.0",
"ride/lib-common": "^1.0.0",
"ride/lib-event": "^1.0.0",
"ride/lib-form": "^1.0.0",
"ride/lib-html": "^1.0.0",
"ride/lib-http": "^1.0.0",
"ride/lib-i18n": "^1.0.0",
"ride/lib-mvc": "^1.0.0",
"ride/lib-orm": "^1.1.0",
"ride/lib-router": "^1.0.0",
"ride/lib-template": "^1.0.0",
"ride/lib-validation": "^1.0.0",
"ride/lib-widget": "^1.0.0",
"ride/web": "^1.0.0",
"ride/web-base": "^1.0.0",
"ride/web-cms": "^1.0.0",
"ride/web-cms-widgets": "^1.0.0 || ^2.0.0",
"ride/web-orm": "^1.0.0"
},
"autoload": {
"psr-0": {
"ride\\web\\cms\\": ["src/"]
}
}
}