-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
34 lines (34 loc) · 1.01 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
{
"name": "aura/signal",
"type": "aura-package",
"description": "A SignalSlots/EventHandler implementation; with it, we can invoke handlers ('slots' or 'hooks') whenever an object sends a signal ('notification' or 'event') to the signal manager.",
"keywords": [ "event", "event handler", "event handling", "signal", "signal slots" ],
"homepage": "http://auraphp.github.com/Aura.Signal",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Aura Contributors",
"homepage": "https://github.com/auraphp/Aura.Signal/contributors"
}
],
"require": {
"php": ">=5.4.0",
"aura/installer-default": "1.0.0"
},
"autoload": {
"psr-0": {
"Aura\\Signal": "src/"
},
"psr-4": {
"Aura\\Signal\\_Config\\": "config/"
}
},
"extra": {
"aura": {
"type": "library",
"config": {
"common": "Aura\\Signal\\_Config\\Common"
}
}
}
}