-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.07 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
{
"name": "codad5/wemall",
"description": "Wemall",
"type": "project",
"license": "MIT",
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Codad5\\Wemall\\": "src/"
}
},
"require": {
"codad5/php-router": "*",
"trulyao/neat-http": "^1.0",
"guzzlehttp/guzzle": "^7.5",
"vlucas/phpdotenv": "^5.4",
"codad5/file-helper": "^1.0",
"google/auth": "^1.23",
"codad5/php-inex": "^1.0",
"monolog/monolog": "2.x-dev",
"ext-pdo": "*",
"ext-mysqli": "*",
"firebase/php-jwt": "*",
"predis/predis": "v2.x-dev"
},
"require-dev": {
"phpunit/phpunit": "9.5",
"phpstan/phpstan": "^1.8",
"deployer/deployer": "^7.0"
},
"scripts":{
"test":"./vendor/bin/phpunit",
"stan": "./vendor/bin/phpstan analyse -c phpstan.neon",
"start": "php -S localhost:2000"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/codad5/php-router"
}
]
}