-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
100 lines (100 loc) · 2.79 KB
/
Copy pathcomposer.json
File metadata and controls
100 lines (100 loc) · 2.79 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "codemonster-ru/support",
"description": "Global helper functions and meta package for codemonster-ru/annabel.",
"type": "library",
"license": "MIT",
"repositories": [
{
"type": "path",
"url": "../*",
"canonical": false,
"options": {
"symlink": true
}
}
],
"readme": "README.md",
"authors": [
{
"name": "Kirill Kolesnikov",
"email": "admin@codemonster.net",
"homepage": "https://github.com/KolesnikovKirill",
"role": "Lead Developer"
}
],
"require": {
"php": ">=8.2",
"codemonster-ru/http": "^2.1",
"codemonster-ru/view": "^2.0",
"codemonster-ru/config": "^2.0",
"codemonster-ru/env": "^2.0",
"codemonster-ru/router": "^2.5",
"codemonster-ru/session": "^2.0",
"codemonster-ru/dumper": "^1.0",
"codemonster-ru/database": "^2.0",
"psr/event-dispatcher": "^1.0",
"psr/simple-cache": "^3.0"
},
"require-dev": {
"codemonster-ru/view-php": "^2.0",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^9.6 || ^10.5 || ^11.0 || ^12.0"
},
"autoload": {
"psr-4": {
"Codemonster\\Support\\": "src/"
},
"files": [
"src/helpers/config.php",
"src/helpers/db.php",
"src/helpers/env.php",
"src/helpers/view.php",
"src/helpers/router.php",
"src/helpers/request.php",
"src/helpers/response.php",
"src/helpers/session.php",
"src/helpers/validation.php",
"src/helpers/cache.php",
"src/helpers/events.php",
"src/helpers/deprecation.php",
"src/helpers/dump.php"
]
},
"autoload-dev": {
"psr-4": {
"Codemonster\\Support\\Tests\\": "tests/"
},
"files": [
"tests/bootstrap.php"
]
},
"scripts": {
"analyse": "phpstan analyse --memory-limit=1G",
"test": "phpunit --colors=always --testdox"
},
"minimum-stability": "dev",
"prefer-stable": true,
"homepage": "https://github.com/codemonster-ru/support",
"keywords": [
"annabel",
"php",
"helpers",
"support",
"codemonster",
"framework",
"meta-package",
"utilities"
],
"support": {
"issues": "https://github.com/codemonster-ru/support/issues",
"source": "https://github.com/codemonster-ru/support"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "1.4.x-dev"
}
}
}