-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.14 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
{
"name": "ngmy/specification",
"type": "library",
"description": "This is a library to help implement the specification pattern in PHP. It provides on-memory validation, on-memory and ORM selection, and specification composite.",
"keywords": [
"specification",
"specification pattern",
"criteria",
"business rule",
"ddd",
"domain driven design",
"design pattern",
"orm",
"laravel",
"eloquent",
"doctrine"
],
"license": "MIT",
"authors": [
{
"name": "Yuta Nagamiya",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1"
},
"autoload": {
"psr-4": {
"Ngmy\\Specification\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ngmy\\Specification\\Test\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"doctrine/orm": "^2.12",
"illuminate/database": "^9.20",
"symfony/cache": "^6.1"
}
}