-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 901 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
{
"name": "opine/pubsub",
"type": "library",
"description": "Service for handling pubsub pattern with dependecy injection",
"keywords": [
"pubsub",
"events",
"dependecy injection"
],
"license": "MIT",
"authors": [
{
"name" : "Ryan Mahoney",
"email" : "ryan@virtuecenter.com",
"homepage": "http://opine-php.org",
"role" : "Developer"
}
],
"require": {
"php" : ">=7.0.0",
"symfony/yaml" : "3.1.6",
"opine/interfaces": "~1.0",
"opine/bundle" : "~2.0",
"opine/config" : "~3.0",
"opine/container" : "~2.0",
"opine/route" : "~3.0"
},
"require-dev": {
"phpunit/phpunit": "5.5.0"
},
"autoload": {
"psr-4": {
"Opine\\PubSub\\": "src/"
}
}
}