Composer
Removed git submodules Added composer.json file for deps and info
This commit is contained in:
parent
6289b2868e
commit
95828382c3
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -1,3 +0,0 @@
|
|||||||
[submodule "vendor/guzzle"]
|
|
||||||
path = vendor/guzzle
|
|
||||||
url = git://github.com/guzzle/guzzle.git
|
|
23
composer.json
Normal file
23
composer.json
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"name": "cboden/Ratchet"
|
||||||
|
, "type": "library"
|
||||||
|
, "description": "PHP WebSocket server component library"
|
||||||
|
, "keywords": ["WebSocket"]
|
||||||
|
, "license": "MIT"
|
||||||
|
, "authors": [
|
||||||
|
{
|
||||||
|
"name": "Chris Boden"
|
||||||
|
, "email": "cboden@gmail.com"
|
||||||
|
, "homepage": "http://socketo.me"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
, "autoload": {
|
||||||
|
"psr-0": {
|
||||||
|
"Ratchet": "src/"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
, "require": {
|
||||||
|
"php": ">=5.3.2"
|
||||||
|
, "guzzle/guzzle": ">=2.0.5"
|
||||||
|
}
|
||||||
|
}
|
5
vendor/README.md
vendored
5
vendor/README.md
vendored
@ -1,5 +0,0 @@
|
|||||||
## External Libraries
|
|
||||||
|
|
||||||
### Guzzle
|
|
||||||
|
|
||||||
Used to parse the incoming HTTP handshake request. A Guzzle Request object is then passed around the application for a consistent API.
|
|
1
vendor/guzzle
vendored
1
vendor/guzzle
vendored
@ -1 +0,0 @@
|
|||||||
Subproject commit ac64abc2c05b921efc4623379c1674a282475ae5
|
|
Loading…
Reference in New Issue
Block a user