-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.41 KB
/
Copy pathcomposer.json
File metadata and controls
58 lines (58 loc) · 1.41 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
{
"name": "devcraftclub/dev-tools",
"description": "Reusable PHP attributes and validation utilities",
"type": "library",
"version": "1.1.1",
"homepage": "https://github.com/DevCraftClub/DevTools",
"support": {
"email": "dev@devcraft.club",
"issues": "https://github.com/DevCraftClub/DevTools/issues",
"forum": "https://devcraft.club",
"docs": "https://readme.devcraft.club/dev/dev-tools/1.1.0/en/getting_started"
},
"require": {
"php": ">=8.3",
"psr/cache": "^3.0",
"psr/log": "^3.0",
"analog/analog": "^1.0",
"marcin-orlowski/lombok-php": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^13.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Devcraft\\Abstracts\\": "src/Abstracts/",
"Devcraft\\Attributes\\": "src/Attributes/",
"Devcraft\\Cache\\": "src/Cache/",
"Devcraft\\Exceptions\\": "src/Exceptions/",
"Devcraft\\Interfaces\\": "src/Interfaces/",
"Devcraft\\Mapper\\": "src/Mapper/",
"Devcraft\\Runtime\\": "src/Runtime/",
"Devcraft\\Validation\\": "src/Validation/"
}
},
"autoload-dev": {
"psr-4": {
"Devcraft\\DevTools\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
},
"authors": [
{
"name": "Maxim Harder",
"email": "dev@devcraft.club",
"role": "developer",
"homepage": "https://maxim-harder.de"
},
{
"name": "DevCraft",
"email": "admin@devcraft.club",
"role": "company",
"homepage": "https://devcraft.club"
}
]
}