forked from K-Phoen/rulerz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.64 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
{
"name": "kphoen/rulerz",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/K-Phoen/RulerZ",
"description": "Powerful implementation of the Specification pattern",
"keywords": ["specification", "doctrine"],
"authors": [
{
"name": "Kévin Gomez",
"email": "contact@kevingomez.fr"
}
],
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"patches": {
"hoa/compiler": [
"patches/hoa-compiler-llk-rule-rule-php.patch"
],
"hoa/stream": [
"patches/hoa-stream-stream-php.patch"
],
"hoa/iterator": [
"patches/hoa-iterator-lookahead-php.patch",
"patches/hoa-iterator-buffer-php.patch"
],
"hoa/protocol": [
"patches/hoa-protocol-node-node-php.patch"
]
}
},
"autoload": {
"psr-4": {
"RulerZ\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Entity\\": "examples/entities/",
"SampleSpecs\\": "examples/specs/",
"RulerZ\\Stub\\": "tests/stub/",
"spec\\RulerZ\\": "tests/spec/RulerZ/"
}
},
"config": {
"bin-dir": "bin/"
},
"require": {
"php": ">=7.4",
"hoa/ruler": "~2.0",
"symfony/property-access": "~3.0|~4.0|~5.0",
"symplify/vendor-patches": "^9.3"
},
"require-dev": {
"ext-json": "*",
"mikey179/vfsstream": "^1.4",
"behat/behat": "^3.10",
"liip/rmt": "^1.6"
}
}