-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (37 loc) · 1.03 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
{
"name": "rulerz-php/pomm",
"description": "Pomm compilation target for RulerZ",
"keywords": ["rulerz", "specification", "rule", "engine", "pomm"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Kévin Gomez",
"email": "[email protected]",
"homepage": "http://www.kevingomez.fr/"
}
],
"require": {
"php": ">=7.1",
"kphoen/rulerz": "dev-master as 1.0.0",
"pomm-project/foundation": "^2.0",
"pomm-project/model-manager": "^2.0",
"pomm-project/cli": "^2.0"
},
"require-dev": {
"liip/rmt": "^1.2",
"vlucas/phpdotenv": "~2.1",
"behat/behat": "~3.0",
"phpunit/phpunit": "^7.1",
"kphoen/rusty": "dev-master"
},
"autoload": {
"psr-4": { "RulerZ\\Pomm\\": "src/" }
},
"autoload-dev": {
"psr-4": {
"Entity\\Pomm\\TestRulerz\\PublicSchema\\": "examples/entities/",
"Tests\\RulerZ\\": "tests/"
}
}
}