-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
59 lines (59 loc) · 1.71 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
{
"name" : "anax/anax",
"description": "The Anax framework, all included.",
"homepage": "https://github.com/canax/anax",
"license": "MIT",
"keywords": ["Anax", "Framework"],
"authors": [
{
"name": "Mikael Roos",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/canax/anax/issues",
"source": "https://github.com/canax/anax"
},
"autoload": {
"psr-4": {"Anax\\": "src/"}
},
"scripts": {
"post-create-project-cmd": [
"composer run-script scaffold-all"
],
"scaffold-all": [
"bash .anax/anax.bash --no-composer-install scaffold theme cimage"
]
},
"minimum-stability": "beta",
"prefer-stable": true,
"require": {
"php": "^7.2",
"anax/cache": "^2.0.0-beta.5",
"anax/commons": "^2.0.12",
"anax/configure": "^2.0.0-beta.1",
"anax/content": "^2.0.0-beta.5",
"anax/controller": "^2.0.0-beta.1",
"anax/database": "^2.2.1",
"anax/database-active-record": "^2.0.4",
"anax/database-query-builder": "^2.0.4",
"anax/di": "^2.0.4",
"anax/log": "^2.0.0-beta.3",
"anax/navigation": "^2.0.0",
"anax/page": "^2.0.0-beta.1",
"anax/proxy": "^1.0.2",
"anax/request": "^2.0.2",
"anax/response": "^2.0.1",
"anax/router": "^2.0.0",
"anax/session": "^2.0.1",
"anax/textfilter": "^1.2.5",
"anax/url": "^2.0.0-beta.2",
"anax/view": "^2.0.2",
"mos/cimage": "^0.7.20",
"symfony/yaml": "^3.4.0"
},
"require-dev": {
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^8"
}
}