forked from PHPFluent/EventManager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 929 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
{
"name": "phpfluent/eventmanager",
"type": "library",
"homepage": "http://github.com/PHPFluent/EventManager",
"license": "MIT",
"authors": [
{
"name": "Kinn Coelho Julião",
"email": "[email protected]"
},
{
"name": "Henrique Moody",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0"
},
"autoload": {
"psr-4": {
"PHPFluent\\EventManager\\": "src/PHPFluent/EventManager"
}
},
"require-dev": {
"ext-pthreads": "*",
"arara/process": "~1.9.1",
"phpmd/phpmd" : "~1.5",
"phpunit/phpunit": "~4.1",
"squizlabs/php_codesniffer": "~1.5"
},
"suggest": {
"arara/process": "Allow asynchronous Process listener.",
"ext-pthreads": "Needed to use in PHPFluent\\EventManager\\Listener\\PThread."
}
}