-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
85 lines (85 loc) · 1.92 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
{
"name": "icanboogie/module",
"type": "library",
"description": "Provides module support to ICanBoogie.",
"version": "6.0",
"keywords": [
"framework",
"module"
],
"homepage": "https://icanboogie.org/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Olivier Laviale",
"email": "[email protected]",
"homepage": "https://olvlvl.com/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/ICanBoogie/Module/issues",
"source": "https://github.com/ICanBoogie/Module"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"olvlvl/composer-attribute-collector": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"prefer-dist": true,
"replace": {
"icanboogie/operation": "^5.0"
},
"require": {
"php": ">=8.1",
"icanboogie/errors": "^6.0",
"icanboogie/event": "^6.0",
"icanboogie/icanboogie": "^6.0"
},
"require-dev": {
"composer/composer": "^2.0",
"icanboogie/bind-activerecord": "^6.0",
"icanboogie/bind-event": "^6.0",
"icanboogie/bind-routing": "^6.0",
"icanboogie/bind-view": "^6.0",
"icanboogie/console": "^6.0",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5"
},
"suggest": {
"icanboogie/facets": "In order to provide records fetchers to controllers."
},
"autoload": {
"psr-4": {
"ICanBoogie\\": "lib",
"ICanBoogie\\Module\\": "lib/Module"
},
"classmap": [
"lib/Module.php"
]
},
"autoload-dev": {
"psr-4": {
"Test\\ICanBoogie\\": "tests/lib"
},
"classmap": [
"tests/modules"
]
},
"scripts": {
"post-autoload-dump": "ICanBoogie\\Autoconfig\\Hooks::on_autoload_dump"
},
"extra": {
"icanboogie": {
"autoconfig-extension": "ICanBoogie\\Module\\Autoconfig\\ModuleExtension",
"config-constructor": {
"ICanBoogie\\Binding\\Module\\Config": "ICanBoogie\\Binding\\Module\\ConfigBuilder"
},
"config-path": "config",
"modules-path": "tests/modules"
}
}
}