-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.59 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
{
"name": "aedart/athenaeum-core",
"description": "A custom Laravel Application implementation, intended to be testing, tinkering or developing non-essential custom applications.",
"keywords": [
"Athenaeum",
"Core",
"Application"
],
"homepage": "https://aedart.github.io/athenaeum/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Alin Eugen Deac",
"email": "aedart@gmail.com"
}
],
"type": "library",
"require": {
"php": "^8.2",
"aedart/athenaeum-config": "^8.19",
"aedart/athenaeum-console": "^8.19",
"aedart/athenaeum-container": "^8.19",
"aedart/athenaeum-contracts": "^8.19",
"aedart/athenaeum-dto": "^8.19",
"aedart/athenaeum-events": "^8.19",
"aedart/athenaeum-maintenance-modes": "^8.19",
"aedart/athenaeum-service": "^8.19",
"aedart/athenaeum-support": "^8.19",
"aedart/athenaeum-utils": "^8.19",
"illuminate/cache": "^v11.36.1",
"illuminate/filesystem": "^v11.36.1",
"psr/log": "^3.0.2",
"symfony/console": "^v7.2.1",
"vlucas/phpdotenv": "^5.6.1"
},
"require-dev": {
"symfony/var-dumper": "^v7.2.0"
},
"autoload": {
"psr-4": {
"Aedart\\Core\\": "src"
},
"files": [
"helpers/paths.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "7.1.x-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}