-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.1 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
{
"name": "roukmoute/interpreter",
"description": "Simple interpreter",
"type": "library",
"require": {
"php": ">=7.1",
"greg0ire/enum": "^4.0",
"symfony/console": "^4.1",
"webmozart/assert": "^1.3"
},
"license": "MIT",
"authors": [
{
"name": "Mathias STRASSER",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Roukmoute\\Interpreter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\": "spec/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.13",
"memio/spec-gen": "^0.9.0",
"pedrotroller/php-cs-custom-fixer": "^2.15",
"phpspec/phpspec": "^5.1",
"phpstan/phpstan": "^0.10.5",
"phpstan/phpstan-strict-rules": "^0.10.1"
}
}