-
Notifications
You must be signed in to change notification settings - Fork 321
/
Copy pathcomposer.json-dist
130 lines (130 loc) · 3.32 KB
/
composer.json-dist
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "dreamfactory/dreamfactory",
"description": "The DreamFactory(tm) Platform.",
"keywords": [
"api",
"dreamfactory",
"laravel",
"rest"
],
"homepage": "https://www.dreamfactory.com/",
"license": "Apache-2.0",
"type": "project",
"authors": [
{
"name": "DreamFactory Team",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/dreamfactorysoftware/dreamfactory",
"docs": "https://docs.dreamfactory.com",
"issues": "https://github.com/dreamfactorysoftware/dreamfactory/issues",
"wiki": "https://wiki.dreamfactory.com",
"guide": "https://guide.dreamfactory.com"
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "vcs",
"url": "https://github.com/dreamfactorysoftware/df-admin-interface"
},
{
"type": "vcs",
"url": "https://github.com/dreamfactorysoftware/df-amqp"
},
{
"type": "vcs",
"url": "https://github.com/dreamfactorysoftware/df-mqtt"
},
{
"type": "vcs",
"url": "https://github.com/dreamfactorysoftware/df-pubsub"
}
],
"require": {
"php": "^8.3",
"dreamfactory/df-admin-interface": "~1.4.0",
"dreamfactory/df-amqp": "~0.3.0",
"dreamfactory/df-apidoc": "~0.8.0",
"dreamfactory/df-aws": "~0.19.0",
"dreamfactory/df-azure": "~0.18.0",
"dreamfactory/df-cache": "~0.13.0",
"dreamfactory/df-cassandra": "~0.15.0",
"dreamfactory/df-core": "~1.0.4",
"dreamfactory/df-couchdb": "~0.18.0",
"dreamfactory/df-email": "~0.13.0",
"dreamfactory/df-exporter-prometheus": "~1.1.0",
"dreamfactory/df-file": "~0.9.0",
"dreamfactory/df-firebird": "~0.10.0",
"dreamfactory/df-git": "~0.8.0",
"dreamfactory/df-mongo-logs": "~1.3.0",
"dreamfactory/df-mqtt": "~0.6.0",
"dreamfactory/df-oauth": "~0.17.0",
"dreamfactory/df-rackspace": "~0.16.0",
"dreamfactory/df-rws": "~0.18.1",
"dreamfactory/df-sqldb": "~1.2.0",
"dreamfactory/df-system": "~0.6.2",
"dreamfactory/df-user": "~0.17.0",
"laravel/framework": "^11.15",
"laravel/helpers": "^1.7",
"laravel/tinker": "^2.9",
"predis/predis": "~1.0",
"symfony/css-selector": "^7.0"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^3.0",
"fakerphp/faker": "^1.23",
"laravel/homestead": "^15.0.3",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.0",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"DreamFactory\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-develop": "3.0.x-dev"
},
"installer-paths": {
"public/{$name}/": [
"type:dreamfactory-app"
]
},
"laravel": {
"dont-discover": []
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
]
},
"config": {
"platform": {
"php": "8.3"
},
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"php-http/discovery": true,
"dreamfactory/installer": true
}
}
}