-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
71 lines (71 loc) · 1.88 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "synergixe/php-beamzer",
"description": "This is a library that provides support for real-time feeds and notifications for PHP web applications",
"version":"0.1.9",
"keywords": [
"ajax long polling",
"server-sent events",
"event source"
],
"type": "library",
"authors": [
{
"name": "Ifeora Okechukwu",
"email": "isocroft@gmail.com"
}
],
"license":"MIT",
"support":{
"issues":"https://github.com/synergixe/php-beamzer/issues",
"source":"https://github.com/synergixe/php-beamzer"
},
"require-dev": {
"mockery/mockery":"^1.0",
"orchestra/testbench":"^3.4",
"phpunit/phpunit":"^5.7 || ^7.0",
"friendsofphp/php-cs-fixer": "^2.5"
},
"require":{
"php":">=5.6.4",
"nesbot/carbon":"^1.22",
"illuminate/notifications":"^5.4",
"illuminate/support":"^5.4",
"illuminate/queue":"^5.4",
"illuminate/redis":"^5.4",
"illuminate/database":"^5.4",
"igorw/event-source":"~1.0",
"illuminate/console":"^5.4",
"symfony/http-foundation":"^3.3 || ^4.1"
},
"autoload": {
"psr-4": {
"Synergixe\\PHPBeamzer\\": "src/Synergixe/PHPBeamzer"
},
"files": [
"src/function.php"
]
},
"autoload-dev": {
"psr-4":{
"Synergixe\\PHPBeamzer\\Test\\":"tests"
}
},
"config":{
"sort-packages":true
},
"minimum-stability":"dev",
"prefer-stable":false,
"extra": {
"laravel": {
"providers": [
"Synergixe\\PHPBeamzer\\Providers\\Laravel\\BeamzerServiceProvider"
]
},
"aliases": {
"Streamer": "Synergixe\\PHPBeamzer\\Facades\\Laravel\\Streamer"
}
},
"scripts": {
"pre-install-cmd": "Synergixe\\PHPBeamzer\\Commands\\Composer\\InstallSetup::preInstall"
}
}