forked from rulerz-php/doctrine-dbal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (33 loc) · 888 Bytes
/
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
{
"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": "contact@kevingomez.fr",
"homepage": "http://www.kevingomez.fr/"
}
],
"require": {
"php": ">=7.1",
"kphoen/rulerz": "dev-master as 1.0.0",
"doctrine/dbal": "^2.4|^3.0"
},
"require-dev": {
"liip/rmt": "^1.2",
"behat/behat": "~3.0",
"phpunit/phpunit": "^7.1",
"kphoen/rusty": "dev-master"
},
"autoload": {
"psr-4": { "RulerZ\\DoctrineDBAL\\": "src/" }
},
"autoload-dev": {
"psr-4": {
"Tests\\RulerZ\\": "tests/"
}
}
}