forked from dwwe2017/php-orm-react-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
81 lines (81 loc) · 2.62 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "dwwe/php-orm-react-framework",
"description": "PHP & React JS efficiently combined",
"keywords": ["php74","php-framework","react","framework", "javascript"],
"homepage": "https://github.com/dwwe2017/php-orm-react-framework",
"license": "MIT",
"type": "project",
"readme": "README.md",
"authors": [
{
"name": "DW </> Web-Engineering",
"email": "[email protected]",
"homepage": "https://dwwe.de",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/dwwe2017/php-orm-react-framework",
"issues": "https://github.com/dwwe2017/php-orm-react-framework/issues",
"wiki": "https://github.com/dwwe2017/php-orm-react-framework/wiki"
},
"autoload": {
"psr-0": {
"Annotations": "./system/",
"Configs": "./system/",
"Configs\\Helpers": "./system/Configs/",
"Controllers": "./system/",
"Entities": "./system/",
"Exceptions": "./system/",
"Factories": "./system/",
"Handlers": "./system/",
"Helpers": "./system/",
"Managers": "./system/",
"Repositories": "./system/",
"Services": "./system/",
"Validators": "./system/"
},
"psr-4": {
"Traits\\": "./system/Traits/",
"Interfaces\\": "./system/Interfaces/"
}
},
"config": {
"platform": {
"php": "7.4"
},
"optimize-autoloader": true
},
"minimum-stability": "stable",
"require": {
"php": "^7.4",
"ext-pdo": "*",
"ext-json": "*",
"doctrine/orm": "^2.6.4",
"gedmo/doctrine-extensions": "^2.4.39",
"webmasters/doctrine-extensions": "^6.0.0",
"planetteamspeak/ts3-php-framework": "^1.1",
"phpfastcache/phpfastcache": "^7.0",
"phpfastcache/phpssdb": "^1.0",
"phpfastcache/couchdb": "^1.0",
"phpfastcache/riak-client": "^3.4",
"predis/predis": "^1.1",
"ezyang/htmlpurifier": "^4.11",
"guzzlehttp/guzzle": "^6.3",
"twig/twig": "^2.11",
"monolog/monolog": "^1.24",
"dwwe/whoops": "^1.0",
"tedivm/jshrink": "^1.3",
"natxet/cssmin": "^3.0",
"caseyamcl/configula": "^3.0",
"gettext/gettext": "^4.6",
"twig/extensions": "^1.5",
"blocktrail/cryptojs-aes-php": "^0.1.0",
"mikechip/php-httpauth": "1.0.0",
"slim/flash": "^0.4.0",
"kanellov/slim-twig-flash": "^0.2.0"
},
"suggest": {
"mongodb/mongodb": "^1.4"
}
}