-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 952 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
38
39
40
41
42
{
"name": "rxthunder/core",
"description": "Event driven CLI micro framework with Reactive Programming flavors",
"license": "MIT",
"authors": [
{
"name": "Jérémy Marodon",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4",
"ext-json": "*",
"reactivex/rxphp": "^2.0.7",
"mnapoli/silly": "^1.7.2",
"symfony/config": "^4.1|^5.0",
"symfony/dependency-injection": "^4.1|^5.0",
"symfony/dotenv": "^4.2|^5.0",
"psr/log": "^1.1.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan": "^0.12.27",
"phpunit/phpunit": "^9.2.2",
"slevomat/coding-standard": "^6.0 >=6.0.4",
"vimeo/psalm": "^3.11",
"youdot/coding-standard": "^3.0"
},
"autoload": {
"psr-4": {
"RxThunder\\Core\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RxThunder\\Core\\": "tests/"
}
},
"bin": [
"bin/thunder"
]
}