-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
42 lines (37 loc) · 949 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" : "henrikbjorn/lurker",
"type" : "library",
"description" : "Resource Watcher.",
"keywords" : ["resource", "filesystem", "watching"],
"license" : "MIT",
"authors" : [
{
"name" : "Konstantin Kudryashov",
"email" : "[email protected]"
},
{
"name" : "Yaroslav Kiliba",
"email" : "[email protected]"
},
{
"name" : "Henrik Bjrnskov",
"email" : "[email protected]"
}
],
"require" : {
"php" : ">=5.3.3",
"symfony/config" : "^2.2|^3.0",
"symfony/event-dispatcher" : "^2.2|^3.0"
},
"autoload" : {
"psr-0" : { "Lurker": "src" }
},
"suggest" : {
"ext-inotify": ">=0.1.6"
},
"extra" : {
"branch-alias" : {
"dev-master" : "1.0.x-dev"
}
}
}