forked from hashtopolis/server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.55 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
{
"name": "hashtopolis/hashtopolis-skeleton",
"description": "A Hashtopolis API skeleton application",
"keywords": [
"microframework",
"rest",
"router",
"psr7"
],
"homepage": "http://github.com/hashtopolis/server",
"license": "MIT",
"authors": [
{
"name": "Various Authors",
"email": "noreply@example.org",
"homepage": "http://example.org"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"crell/api-problem": "^3.6",
"middlewares/negotiation": "^2.1",
"monolog/monolog": "^2.8",
"php-di/php-di": "^6.4",
"slim/psr7": "^1.5",
"slim/slim": "^4.10",
"tuupola/slim-basic-auth": "^3.3",
"tuupola/slim-jwt-auth": "^3.6",
"ext-pdo" : "*"
},
"require-dev": {
"jangregor/phpstan-prophecy": "^1.0.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.1.0",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^9.5.25",
"squizlabs/php_codesniffer": "^3.7"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"process-timeout": 0,
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"start": "php -S localhost:8080 -t src",
"test": "phpunit"
}
}