-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.42 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
{
"name": "rindow/skeleton-fullfeatures-demo",
"type": "project",
"description": "Rindow fullfeatures application skeleton",
"keywords": [
"rindow",
"framework",
"skeleton"
],
"license": "BSD-3-Clause",
"require": {
"php": "^7.2",
"rindow/rindow-annotation": "^1.0",
"rindow/rindow-aop": "^1.0",
"rindow/rindow-container": "^1.0",
"rindow/rindow-database-pdo": "^1.0",
"rindow/rindow-transaction": "^1.0",
"rindow/rindow-validation": "^1.0",
"rindow/rindow-web-mvc": "^1.0",
"rindow/rindow-web-router": "^1.0",
"rindow/rindow-web-form": "^1.0",
"rindow/rindow-web-http": "^1.0",
"rindow/rindow-web-view": "^1.0",
"rindow/rindow-web-session": "^1.0",
"rindow/rindow-web-security": "^1.0",
"rindow/rindow-module-monolog": "^1.0",
"rindow/rindow-module-twig": "^1.0",
"rindow/rindow-module-smarty": "^1.0",
"rindow/rindow-console": "^1.0",
"rindow/rindow-module-mongodb": "^1.0",
"rindow/rindow-module-google-cloud": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"Acme\\MyApp\\": "src/"
}
},
"scripts": {
"post-update-cmd": "Acme\\MyApp\\Setup::createSecret",
"post-create-project-cmd": "Acme\\MyApp\\Setup::createSecret"
}
}