-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 2.23 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 2.23 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "lyrasoft/earth",
"description": "Home Land of LYRASOFT",
"homepage": "https://github.com/lyrasoft/earth",
"license": "MIT",
"minimum-stability": "beta",
"authors": [
{
"name": "Simon Asika",
"email": "asika32764@gmail.com"
}
],
"require": {
"php": ">=8.4.6",
"ext-json": "*",
"windwalker/core": "^4.0",
"windwalker/renderer": "^4.0",
"windwalker/dom": "^4.0",
"windwalker/edge": "^4.0",
"windwalker/orm": "^4.0",
"windwalker/database": "^4.0",
"windwalker/session": "^4.0",
"windwalker/form": "^4.0",
"windwalker/authentication": "^4.0",
"windwalker/authorization": "^4.0",
"windwalker/unicorn": "^1.2",
"windwalker/srp": "^1.0",
"lyrasoft/luna": "^2.2",
"lyrasoft/toolkit": "^1.0"
},
"require-dev": {
},
"scripts": {
"post-create-project-cmd": [
"@php windwalker pkg:install windwalker/unicorn lyrasoft/luna --tag routes --details 2",
"Windwalker\\Core\\Composer\\StarterInstaller::rootInstall",
"Lyrasoft\\Toolkit\\Installer\\EarthInstaller::install",
"Lyrasoft\\Toolkit\\Installer\\EarthInstaller::npmrc",
"@php windwalker run prepare"
],
"post-package-update": [
"Windwalker\\Core\\Composer\\PackageUpgrader::upgrade"
],
"post-autoload-dump": [
"@php windwalker pkg:postinstall || true",
"@php windwalker pkg:install lyrasoft/toolkit --tag ide -f --details 2 || true",
"@php windwalker cache:clear renderer"
],
"env": [
"Windwalker\\Core\\Composer\\StarterInstaller::genEnv",
"Lyrasoft\\Toolkit\\Installer\\EarthInstaller::npmrc",
"@php windwalker pkg:install lyrasoft/toolkit --tag ide -f --details 2 || true",
"@php windwalker run prepare"
]
},
"autoload": {
"psr-4": {
"App\\": "src/"
},
"files": [
"src/bootstrap.php"
]
},
"config": {
"platform": {
"php": "8.4.6"
}
},
"extra": {
"branch-alias": {
}
}
}