Skip to content

Commit

Permalink
Source is now a compilation of smaller repositories
Browse files Browse the repository at this point in the history
  • Loading branch information
cboden committed May 25, 2014
1 parent def1876 commit 7eeeedd
Show file tree
Hide file tree
Showing 173 changed files with 479 additions and 18,311 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Event-driven, non-blocking I/O with PHP.

[![Build Status](https://secure.travis-ci.org/reactphp/react.png?branch=master)](http://travis-ci.org/reactphp/react)
[![Build Status](https://secure.travis-ci.org/reactphp/react.png?branch=split)](http://travis-ci.org/reactphp/react)

## Install

Expand Down Expand Up @@ -84,7 +84,7 @@ $loop->run();
## Documentation

Superficial documentation can be found in the README files of the individual
components. See `src/*/README.md`.
components. See `vendor/react/*/src/README.md`.

## Community

Expand Down
30 changes: 11 additions & 19 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,41 +1,33 @@
{
"name": "react/react",
"description": "Nuclear Reactor written in PHP.",
"keywords": ["event-loop", "reactor"],
"keywords": ["event-loop", "reactor", "asynchronous"],
"license": "MIT",
"support": {
"issues": "https://github.com/reactphp/react/issues",
"irc": "irc://irc.freenode.org/reactphp"
},
"require": {
"php": ">=5.4.0",
"evenement/evenement": "~2.0",
"guzzle/parser": "~3.0",
"react/promise": "~2.0"
"react/cache": "dev-master as 0.4",
"react/child-process": "dev-master",
"react/dns": "dev-master",
"react/event-loop": "dev-master as 0.4",
"react/http-client": "dev-master",
"react/http": "dev-master",
"react/promise": "dev-master as 2.0",
"react/socket-client": "dev-master",
"react/socket": "dev-master",
"react/stream": "dev-master as 0.4"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"replace": {
"react/event-loop": "self.version",
"react/cache": "self.version",
"react/stream": "self.version",
"react/socket": "self.version",
"react/socket-client": "self.version",
"react/http": "self.version",
"react/http-client": "self.version",
"react/dns": "self.version"
},
"suggest": {
"ext-libevent": "Allows for use of a more performant event-loop implementation.",
"ext-libev": "Allows for use of a more performant event-loop implementation.",
"ext-event": "Allows for use of a more performant event-loop implementation."
},
"autoload": {
"psr-4": {
"React\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.5-dev"
Expand Down
Loading

0 comments on commit 7eeeedd

Please sign in to comment.