-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.7 KB
/
Copy pathcomposer.json
File metadata and controls
62 lines (62 loc) · 1.7 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "mrpc/pramnosframework",
"description": "The Pramnos Framework.",
"keywords": ["framework", "pramnos"],
"license": "MIT",
"homepage": "https://github.com/mrpc/PramnosFramework",
"authors": [
{
"name": "Yannis - Pastis Glaros",
"email": "mrpc@pramnoshosting.gr"
}
],
"require": {
"php": ">=8.1",
"ext-mbstring": "*",
"symfony/mailer": "^5.4",
"symfony/console": "5.4.*",
"symfony/routing": "5.4.*",
"symfony/finder": "5.4.*",
"symfony/dotenv": "5.4.*",
"web-token/jwt-framework": "^3.0",
"league/oauth2-server": "^8.5",
"nyholm/psr7": "^1.8",
"psr/simple-cache": "^3.0",
"psr/http-server-middleware": "^1.0",
"chillerlan/php-qrcode": "^5.0",
"web-auth/webauthn-lib": "^5.3"
},
"suggest": {
"pusher/pusher-php-server": "^7.0 — required for PusherDriver (Broadcasting) to push events to Pusher or any Pusher-compatible server (Reverb)"
},
"require-dev": {
"php": ">=8.1",
"phpunit/phpunit": "^10.0|^11.0",
"symfony/dom-crawler": "^5.4",
"symfony/css-selector": "^5.4",
"pusher/pusher-php-server": "^7.0",
"aws/aws-sdk-php": "^3.0"
},
"autoload": {
"files": [
"src/Pramnos/helpers.php"
],
"psr-4": {
"Pramnos\\": "src/Pramnos/"
},
"classmap": [
"database/migrations/"
]
},
"autoload-dev": {
"psr-4": {
"Pramnos\\Tests\\": "tests/"
}
},
"bin": "bin/pramnos",
"config": {
"platform-check": false
},
"scripts": {
}
}