-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (72 loc) · 1.53 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
{
"name": "rhengles/ddsoft-online",
"type": "project",
"description": "Set up a modern Siler app by running one command.",
"license": "MIT",
"authors": [
{
"name": "rhengles",
"email": "[email protected]"
}
],
"require": {
"hassankhan/config": "^2.1",
"leocavalcante/siler": "^1.7",
"monolog/monolog": "^2.1",
"riskio/oauth2-auth0": "^2.4",
"thenetworg/oauth2-azure": "^2.0",
"laminas/laminas-stratigility": "^3.5",
"laminas/laminas-diactoros": "^2.7",
"laminas/laminas-httphandlerrunner": "^2.0",
"gabordemooij/redbean": "dev-master",
"webonyx/graphql-php": "^14.9",
"laminas/laminas-config": "^3.6",
"laminas/laminas-config-aggregator": "^1.6"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"swoole/ide-helper": "^4.5",
"roave/security-advisories": "dev-latest",
"ramsey/devtools": "^1.7"
},
"extra": {
"ramsey/devtools": {
"commands": {
"test:unit": {
"override": true,
"script": "pest"
},
"lint": {
"override": true,
"script": "phpcs --cache=./var/cache/phpcs.cache"
},
"lint:fix": {
"override": true,
"script": "phpcbf --cache=./var/cache/phpcs.cache"
}
}
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"start": [
"Composer\\Config::disableProcessTimeout",
"php -S localhost:8080 srv/sapi.php"
],
"swoole": [
"Composer\\Config::disableProcessTimeout",
"php srv/swoole.php"
]
}
}