-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
86 lines (86 loc) · 2.42 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "aplus/framework",
"description": "Aplus Framework",
"license": "MIT",
"type": "library",
"keywords": [
"aplus",
"framework"
],
"authors": [
{
"name": "Natan Felles",
"email": "[email protected]",
"homepage": "https://natanfelles.github.io"
}
],
"homepage": "https://aplus-framework.com/packages/framework",
"support": {
"email": "[email protected]",
"issues": "https://github.com/aplus-framework/framework/issues",
"forum": "https://aplus-framework.com/forum",
"source": "https://github.com/aplus-framework/framework",
"docs": "https://docs.aplus-framework.com/guides/framework/"
},
"funding": [
{
"type": "Aplus Sponsor",
"url": "https://aplus-framework.com/sponsor"
}
],
"require": {
"php": ">=8.3",
"aplus/autoload": "^3.0.1",
"aplus/cache": "^4.1.0",
"aplus/cli": "^3.0.1",
"aplus/config": "^4.0.1",
"aplus/crypto": "^2.0.1",
"aplus/database": "^4.1.2",
"aplus/database-extra": "^4.0.1",
"aplus/date": "^3.0.1",
"aplus/debug": "^4.1.2",
"aplus/dev-commands": "^2.0.2",
"aplus/email": "^4.0.1",
"aplus/events": "^2.0.0",
"aplus/factories": "^2.0.1",
"aplus/helpers": "^4.0.1",
"aplus/http": "^6.2.0",
"aplus/http-client": "^5.0.1",
"aplus/image": "^3.0.1",
"aplus/language": "^4.0.1",
"aplus/log": "^4.1.0",
"aplus/mvc": "^4.1.0",
"aplus/pagination": "^4.0.1",
"aplus/routing": "^4.0.1",
"aplus/session": "^4.0.1",
"aplus/validation": "^3.1.1"
},
"require-dev": {
"ext-xdebug": "*",
"aplus/coding-standard": "^2.8.0",
"ergebnis/composer-normalize": "^2.44",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^10.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"classmap": [
"src/Aplus.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
}
}