-
-
Notifications
You must be signed in to change notification settings - Fork 97
/
composer.json
61 lines (56 loc) · 1.79 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": "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"
}
},
"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.1",
"hoa/ruler": "~2.0",
"symfony/property-access": "~3.0|~4.0"
},
"require-dev": {
"ext-json": "*",
"mikey179/vfsstream": "~1.4",
"coduo/phpspec-data-provider-extension": "~1.0,!=1.0.2",
"phpspec/phpspec": "~2.0,>=2.4@dev",
"behat/behat": "~3.0",
"kphoen/rusty": "dev-master",
"liip/rmt": "^1.2"
},
"suggest": {
"kphoen/rulerz-spec-builder": "If you want a specification builder",
"rulerz-php/eloquent": "To execute rules against Eloquent targets",
"rulerz-php/pomm": "To execute rules against Pomm targets",
"rulerz-php/solarium": "To execute rules against Solarium targets",
"rulerz-php/elasticsearch": "To execute rules against Elasticsearch targets",
"rulerz-php/doctrine-dbal": "To execute rules against Doctrine DBAL targets",
"rulerz-php/doctrine-orm": "To execute rules against Doctrine ORM targets"
}
}