-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
34 lines (34 loc) · 1.02 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": "scherersoftware/cake-websocket",
"description": "Websocket plugin for CakePHP",
"license": "MIT",
"type": "cakephp-plugin",
"homepage": "https://github.com/scherersoftware/cake-websocket",
"require": {
"php": ">=7.1.0",
"cakephp/cakephp": ">=3.3.2 < 4.0.0",
"react/event-loop": "0.4.*|0.3.*",
"react/Socket": "^0.3 || ^0.4",
"cboden/ratchet": "^0.3.6",
"josegonzalez/cakephp-queuesadilla": ">=0.3.5",
"codekanzlei/cake-frontend-bridge": ">=1.0.0"
},
"require-dev": {
"phpunit/phpunit": "*",
"cakephp/cakephp-codesniffer": "dev-master"
},
"autoload": {
"psr-4": {
"Websocket\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Websocket\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
},
"scripts": {
"cs-check": "vendor/bin/phpcs --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src"
}
}