-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.37 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
{
"name": "maslosoft/addendum",
"description": "Powerful and easy to use PHP annotations",
"keywords": [
"php",
"annotations",
"annotation",
"addendum",
"metadata"
],
"license": [
"AGPL-3.0-only",
"proprietary"
],
"authors": [
{
"name": "Peter Maselkowski",
"email": "peter@maslosoft.com",
"homepage": "https://maslosoft.com",
"role": "Developer"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Maslosoft\\Addendum\\": "src"
},
"files": [
"src/polyfills.php"
]
},
"autoload-dev": {
"psr-4": {
"AddendumTest\\": "tests",
"Maslosoft\\AddendumTest\\Models\\": "tests/models",
"Maslosoft\\AddendumTest\\Annotations\\": "tests/annotations"
}
},
"suggest": {
"monolog/monolog": "Sends your logs to files, sockets, inboxes, databases and various web services",
"maslosoft/signals": "Collect annotation namespaces with signals"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"codeception/codeception": "^5",
"codeception/module-asserts": "^3",
"codeception/specify": "^2",
"maslosoft/zamm": "^1 || ^2",
"maslosoft/signals": "*@dev",
"monolog/monolog": "^2"
},
"require": {
"php": ">=7.4",
"maslosoft/cache": "*",
"maslosoft/cli-shared": "^1 | ^2",
"maslosoft/embedi": "^2",
"maslosoft/gazebo": "^2",
"psr/log": "^1|^2|^3"
},
"homepage": "https://maslosoft.com/addendum/"
}