-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.46 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.46 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
45
46
47
48
49
50
51
{
"name": "pcf/addendum-framework",
"type": "library",
"description": "PHP 8.5 micro-framework with attribute-based routing, JWT authentication, and CLI support",
"license": "MIT",
"authors": [
{
"name": "Pawel Radzikowski",
"email": "paw.radzikowski@gmail.com"
}
],
"require-dev": {
"phpunit/phpunit": "^12.3"
},
"require": {
"php": "^8.5",
"ext-pdo": "*",
"psr/http-message": "^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "^3.0",
"psr/simple-cache": "^3.0",
"psr/container": "^2.0",
"guzzlehttp/psr7": "^2.7",
"symfony/finder": "^7.0",
"symfony/dotenv": "^7.0",
"symfony/console": "^7.0",
"symfony/process": "^7.0",
"web-token/jwt-framework": "^3.3",
"predis/predis": "^2.2",
"dragonmantank/cron-expression": "^3.3",
"monolog/monolog": "^3.0",
"makinacorpus/access-control": "^1.3"
},
"autoload": {
"psr-4": {
"PCF\\Addendum\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PCF\\Addendum\\Tests\\": "dev/tests/phpunit/"
}
},
"suggest": {
"ext-pdo_pgsql": "Required for PostgreSQL database access",
"ext-pdo_mysql": "Required for MySQL database access"
},
"minimum-stability": "stable",
"prefer-stable": true
}