-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 862 Bytes
/
Copy pathcomposer.json
File metadata and controls
34 lines (34 loc) · 862 Bytes
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
{
"name": "ildrm/servex",
"description": "A microservice-based PHP framework inspired by Moleculer",
"type": "library",
"version": "1.1.0",
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.0",
"psr/container": "^2.0",
"psr/log": "^3.0",
"psr/simple-cache": "^2.0",
"firebase/php-jwt": "^6.11",
"laminas/laminas-diactoros": "^2.11",
"ext-pdo": "*",
"vlucas/phpdotenv": "^5.5",
"monolog/monolog": "^3.0",
"predis/predis": "^2.0"
},
"autoload": {
"psr-4": {
"Servex\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^1.10"
},
"scripts": {
"test": "phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT"
}