-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.dev.json
More file actions
44 lines (44 loc) · 1.08 KB
/
composer.dev.json
File metadata and controls
44 lines (44 loc) · 1.08 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
{
"name": "meklis/switcher-core-api",
"description": "Switcher core API",
"license": "MIT",
"require": {
"php": "^7.2 || ^8.0",
"ext-json": "*",
"meklis/switcher-core": "*",
"monolog/monolog": "*",
"nyholm/psr7": "^1.4",
"php-di/php-di": "^6.3",
"slim/psr7": "^1.3",
"slim/slim": "^4.7",
"spiral/goridge": "3.2.x-dev",
"spiral/roadrunner": "v2.4.1",
"spiral/roadrunner-metrics": "2.1.x-dev",
"vlucas/phpdotenv": "5.4.x-dev"
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"repositories": [
{
"package": "meklis/switcher-core",
"type": "path",
"url": "../switcher-core"
},
{
"package": "meklis/telnet",
"type": "path",
"url": "../telnet-client"
}
],
"scripts": {
"start": "php -S 0.0.0.0:5990 -t public"
},
"minimum-stability": "dev"
}