-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.38 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.38 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
{
"name": "panda/framework",
"description": "The Panda PHP Framework.",
"keywords": [
"framework",
"panda"
],
"license": "MIT",
"homepage": "http://pandaphp.org",
"support": {
"issues": "https://github.com/PandaPlatform/framework/issues",
"source": "https://github.com/PandaPlatform/framework"
},
"authors": [
{
"name": "Ioannis Papikas",
"email": "papikas.ioan@gmail.com"
}
],
"require": {
"php": "^8.3",
"psr/http-message": "^2.0",
"monolog/monolog": "^3.8",
"symfony/http-foundation": "^7.2",
"symfony/http-kernel": "^7.2",
"symfony/routing": "^7.2",
"php-di/php-di": "^7.0",
"panda/helpers": "^3.0"
},
"replace": {
"panda/config": "self.version",
"panda/contracts": "self.version",
"panda/l10n": "self.version",
"panda/registry": "self.version",
"panda/session": "self.version",
"panda/storage": "self.version"
},
"require-dev": {
"phpunit/phpunit": "~11.3"
},
"autoload": {
"psr-4": {
"Panda\\": "src/Panda"
}
},
"autoload-dev": {
"psr-4": {
"Panda\\Tests\\": "tests/Panda/Tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
}