forked from rulerz-php/doctrine-dbal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.49 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
{
"name": "rulerz-php/doctrine-dbal",
"description": "Doctrine DBAL compilation target for RulerZ",
"keywords": ["rulerz", "specification", "rule", "engine", "doctrine", "dbal"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Kévin Gomez",
"email": "[email protected]",
"homepage": "http://www.kevingomez.fr/"
}
],
"require": {
"php": ">=7.4",
"kphoen/rulerz": "^1",
"doctrine/dbal": "^2.4",
"symplify/vendor-patches": "^9.3"
},
"require-dev": {
"liip/rmt": "^1.2",
"behat/behat": "~3.0",
"phpunit/phpunit": "^9.5"
},
"extra": {
"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\\DoctrineDBAL\\": "src/" }
},
"autoload-dev": {
"psr-4": {
"Tests\\RulerZ\\": "tests/"
}
},
"repositories": [
{
"type": "git",
"url": "https://github.com/wizaplace/rulerz"
}
]
}