Array
(
    [0] => Array
        (
            [id] => 2516288768
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 28785600
                    [name] => apcj/query-plan-viz
                    [url] => https://api.github.com/repos/apcj/query-plan-viz
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2015-01-16T01:09:53Z
        )

    [1] => Array
        (
            [id] => 2516269531
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 14569038
                    [name] => GraphAlchemist/GraphJSON
                    [url] => https://api.github.com/repos/GraphAlchemist/GraphJSON
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2015-01-16T00:57:12Z
            [org] => Array
                (
                    [id] => 1875037
                    [login] => GraphAlchemist
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/GraphAlchemist
                    [avatar_url] => https://avatars.githubusercontent.com/u/1875037?
                )

        )

    [2] => Array
        (
            [id] => 2516262677
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 2801883
                    [name] => apcj/arrows
                    [url] => https://api.github.com/repos/apcj/arrows
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2015-01-16T00:52:47Z
        )

    [3] => Array
        (
            [id] => 2515941394
            [type] => IssuesEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [action] => closed
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/23
                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/23/labels{/name}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/23/comments
                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/23/events
                            [html_url] => https://github.com/neoxygen/neo4j-neoclient/issues/23
                            [id] => 54456667
                            [number] => 23
                            [title] => Relationship->getProperty is either true of null
                            [user] => Array
                                (
                                    [login] => JackieXu
                                    [id] => 571054
                                    [avatar_url] => https://avatars.githubusercontent.com/u/571054?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/JackieXu
                                    [html_url] => https://github.com/JackieXu
                                    [followers_url] => https://api.github.com/users/JackieXu/followers
                                    [following_url] => https://api.github.com/users/JackieXu/following{/other_user}
                                    [gists_url] => https://api.github.com/users/JackieXu/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/JackieXu/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/JackieXu/subscriptions
                                    [organizations_url] => https://api.github.com/users/JackieXu/orgs
                                    [repos_url] => https://api.github.com/users/JackieXu/repos
                                    [events_url] => https://api.github.com/users/JackieXu/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/JackieXu/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => closed
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 4
                            [created_at] => 2015-01-15T14:45:37Z
                            [updated_at] => 2015-01-15T22:05:52Z
                            [closed_at] => 2015-01-15T22:05:52Z
                            [body] => The following line:

    $value = isset($this->properties[$name]) ?: null;

will always evaluate to true or null.

Leaving out the middle part of PHP's ternary operator will make it equal to the first part, which is a boolean. I can send in a pull request, but I don't know where and how you would want those.

The following should work:

    $value = isset($this->properties[$name]) ? $this->properties[$name] : null;
                        )

                )

            [public] => 1
            [created_at] => 2015-01-15T22:05:52Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [4] => Array
        (
            [id] => 2515941393
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/23
                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/23/labels{/name}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/23/comments
                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/23/events
                            [html_url] => https://github.com/neoxygen/neo4j-neoclient/issues/23
                            [id] => 54456667
                            [number] => 23
                            [title] => Relationship->getProperty is either true of null
                            [user] => Array
                                (
                                    [login] => JackieXu
                                    [id] => 571054
                                    [avatar_url] => https://avatars.githubusercontent.com/u/571054?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/JackieXu
                                    [html_url] => https://github.com/JackieXu
                                    [followers_url] => https://api.github.com/users/JackieXu/followers
                                    [following_url] => https://api.github.com/users/JackieXu/following{/other_user}
                                    [gists_url] => https://api.github.com/users/JackieXu/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/JackieXu/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/JackieXu/subscriptions
                                    [organizations_url] => https://api.github.com/users/JackieXu/orgs
                                    [repos_url] => https://api.github.com/users/JackieXu/repos
                                    [events_url] => https://api.github.com/users/JackieXu/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/JackieXu/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => closed
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 4
                            [created_at] => 2015-01-15T14:45:37Z
                            [updated_at] => 2015-01-15T22:05:52Z
                            [closed_at] => 2015-01-15T22:05:52Z
                            [body] => The following line:

    $value = isset($this->properties[$name]) ?: null;

will always evaluate to true or null.

Leaving out the middle part of PHP's ternary operator will make it equal to the first part, which is a boolean. I can send in a pull request, but I don't know where and how you would want those.

The following should work:

    $value = isset($this->properties[$name]) ? $this->properties[$name] : null;
                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/comments/70171352
                            [html_url] => https://github.com/neoxygen/neo4j-neoclient/issues/23#issuecomment-70171352
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/23
                            [id] => 70171352
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2015-01-15T22:05:52Z
                            [updated_at] => 2015-01-15T22:05:52Z
                            [body] => Fixed and new release 2.0.10 .

Thanks again.
                        )

                )

            [public] => 1
            [created_at] => 2015-01-15T22:05:52Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [5] => Array
        (
            [id] => 2515940006
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [ref] => 2.0.10
                    [ref_type] => tag
                    [master_branch] => master
                    [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2015-01-15T22:05:18Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [6] => Array
        (
            [id] => 2515939216
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 547713695
                    [size] => 2
                    [distinct_size] => 0
                    [ref] => refs/heads/master
                    [head] => a7960d4ffa7b684a623495dd0c7e35611cb70b9c
                    [before] => 744a62df106e2a0ad719ff467e08715c1283fc19
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 87aa2201e82a031e650e085f098e7f71e37f2045
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fix relationship property getter returning always null
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/87aa2201e82a031e650e085f098e7f71e37f2045
                                )

                            [1] => Array
                                (
                                    [sha] => a7960d4ffa7b684a623495dd0c7e35611cb70b9c
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added test for relationship getProperty
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/a7960d4ffa7b684a623495dd0c7e35611cb70b9c
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-15T22:05:02Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [7] => Array
        (
            [id] => 2515939212
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [action] => closed
                    [number] => 24
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/24
                            [id] => 27465438
                            [html_url] => https://github.com/neoxygen/neo4j-neoclient/pull/24
                            [diff_url] => https://github.com/neoxygen/neo4j-neoclient/pull/24.diff
                            [patch_url] => https://github.com/neoxygen/neo4j-neoclient/pull/24.patch
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/24
                            [number] => 24
                            [state] => closed
                            [locked] =>
                            [title] => Relationship property getter
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] =>
                            [created_at] => 2015-01-15T21:51:13Z
                            [updated_at] => 2015-01-15T22:04:59Z
                            [closed_at] => 2015-01-15T22:04:59Z
                            [merged_at] => 2015-01-15T22:04:59Z
                            [merge_commit_sha] => a13bd5f617efb8ea01e24dfd1b272aa59ef124d9
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/24/commits
                            [review_comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/24/comments
                            [review_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/24/comments
                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/a7960d4ffa7b684a623495dd0c7e35611cb70b9c
                            [head] => Array
                                (
                                    [label] => neoxygen:relProp
                                    [ref] => relProp
                                    [sha] => a7960d4ffa7b684a623495dd0c7e35611cb70b9c
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 24004568
                                            [name] => neo4j-neoclient
                                            [full_name] => neoxygen/neo4j-neoclient
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/releases{/id}
                                            [created_at] => 2014-09-13T20:10:36Z
                                            [updated_at] => 2015-01-15T22:04:59Z
                                            [pushed_at] => 2015-01-15T22:04:59Z
                                            [git_url] => git://github.com/neoxygen/neo4j-neoclient.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-neoclient.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-neoclient.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [homepage] =>
                                            [size] => 1185
                                            [stargazers_count] => 21
                                            [watchers_count] => 21
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 6
                                            [mirror_url] =>
                                            [open_issues_count] => 1
                                            [forks] => 6
                                            [open_issues] => 1
                                            [watchers] => 21
                                            [default_branch] => master
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => neoxygen:master
                                    [ref] => master
                                    [sha] => 744a62df106e2a0ad719ff467e08715c1283fc19
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 24004568
                                            [name] => neo4j-neoclient
                                            [full_name] => neoxygen/neo4j-neoclient
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/releases{/id}
                                            [created_at] => 2014-09-13T20:10:36Z
                                            [updated_at] => 2015-01-15T22:04:59Z
                                            [pushed_at] => 2015-01-15T22:04:59Z
                                            [git_url] => git://github.com/neoxygen/neo4j-neoclient.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-neoclient.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-neoclient.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [homepage] =>
                                            [size] => 1185
                                            [stargazers_count] => 21
                                            [watchers_count] => 21
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 6
                                            [mirror_url] =>
                                            [open_issues_count] => 1
                                            [forks] => 6
                                            [open_issues] => 1
                                            [watchers] => 21
                                            [default_branch] => master
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/24
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neoxygen/neo4j-neoclient/pull/24
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/24
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/24/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/24/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/24/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/a7960d4ffa7b684a623495dd0c7e35611cb70b9c
                                        )

                                )

                            [merged] => 1
                            [mergeable] =>
                            [mergeable_state] => unknown
                            [merged_by] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [comments] => 1
                            [review_comments] => 0
                            [commits] => 2
                            [additions] => 11
                            [deletions] => 1
                            [changed_files] => 2
                        )

                )

            [public] => 1
            [created_at] => 2015-01-15T22:05:02Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [8] => Array
        (
            [id] => 2515929871
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/24
                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/24/labels{/name}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/24/comments
                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/24/events
                            [html_url] => https://github.com/neoxygen/neo4j-neoclient/pull/24
                            [id] => 54509399
                            [number] => 24
                            [title] => Relationship property getter
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => open
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 1
                            [created_at] => 2015-01-15T21:51:13Z
                            [updated_at] => 2015-01-15T22:01:12Z
                            [closed_at] =>
                            [pull_request] => Array
                                (
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/24
                                    [html_url] => https://github.com/neoxygen/neo4j-neoclient/pull/24
                                    [diff_url] => https://github.com/neoxygen/neo4j-neoclient/pull/24.diff
                                    [patch_url] => https://github.com/neoxygen/neo4j-neoclient/pull/24.patch
                                )

                            [body] =>
                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/comments/70170607
                            [html_url] => https://github.com/neoxygen/neo4j-neoclient/pull/24#issuecomment-70170607
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/24
                            [id] => 70170607
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2015-01-15T22:01:12Z
                            [updated_at] => 2015-01-15T22:01:12Z
                            [body] => Fix #23
                        )

                )

            [public] => 1
            [created_at] => 2015-01-15T22:01:14Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [9] => Array
        (
            [id] => 2515904311
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [action] => opened
                    [number] => 24
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/24
                            [id] => 27465438
                            [html_url] => https://github.com/neoxygen/neo4j-neoclient/pull/24
                            [diff_url] => https://github.com/neoxygen/neo4j-neoclient/pull/24.diff
                            [patch_url] => https://github.com/neoxygen/neo4j-neoclient/pull/24.patch
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/24
                            [number] => 24
                            [state] => open
                            [locked] =>
                            [title] => Relationship property getter
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] =>
                            [created_at] => 2015-01-15T21:51:13Z
                            [updated_at] => 2015-01-15T21:51:13Z
                            [closed_at] =>
                            [merged_at] =>
                            [merge_commit_sha] =>
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/24/commits
                            [review_comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/24/comments
                            [review_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/24/comments
                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/a7960d4ffa7b684a623495dd0c7e35611cb70b9c
                            [head] => Array
                                (
                                    [label] => neoxygen:relProp
                                    [ref] => relProp
                                    [sha] => a7960d4ffa7b684a623495dd0c7e35611cb70b9c
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 24004568
                                            [name] => neo4j-neoclient
                                            [full_name] => neoxygen/neo4j-neoclient
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/releases{/id}
                                            [created_at] => 2014-09-13T20:10:36Z
                                            [updated_at] => 2015-01-15T14:57:13Z
                                            [pushed_at] => 2015-01-15T21:49:43Z
                                            [git_url] => git://github.com/neoxygen/neo4j-neoclient.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-neoclient.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-neoclient.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [homepage] =>
                                            [size] => 1185
                                            [stargazers_count] => 21
                                            [watchers_count] => 21
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 6
                                            [mirror_url] =>
                                            [open_issues_count] => 2
                                            [forks] => 6
                                            [open_issues] => 2
                                            [watchers] => 21
                                            [default_branch] => master
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => neoxygen:master
                                    [ref] => master
                                    [sha] => 744a62df106e2a0ad719ff467e08715c1283fc19
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 24004568
                                            [name] => neo4j-neoclient
                                            [full_name] => neoxygen/neo4j-neoclient
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/releases{/id}
                                            [created_at] => 2014-09-13T20:10:36Z
                                            [updated_at] => 2015-01-15T14:57:13Z
                                            [pushed_at] => 2015-01-15T21:49:43Z
                                            [git_url] => git://github.com/neoxygen/neo4j-neoclient.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-neoclient.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-neoclient.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [homepage] =>
                                            [size] => 1185
                                            [stargazers_count] => 21
                                            [watchers_count] => 21
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 6
                                            [mirror_url] =>
                                            [open_issues_count] => 2
                                            [forks] => 6
                                            [open_issues] => 2
                                            [watchers] => 21
                                            [default_branch] => master
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/24
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neoxygen/neo4j-neoclient/pull/24
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/24
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/24/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/24/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/24/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/a7960d4ffa7b684a623495dd0c7e35611cb70b9c
                                        )

                                )

                            [merged] =>
                            [mergeable] =>
                            [mergeable_state] => unknown
                            [merged_by] =>
                            [comments] => 0
                            [review_comments] => 0
                            [commits] => 2
                            [additions] => 11
                            [deletions] => 1
                            [changed_files] => 2
                        )

                )

            [public] => 1
            [created_at] => 2015-01-15T21:51:13Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [10] => Array
        (
            [id] => 2515900602
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 547698031
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/relProp
                    [head] => a7960d4ffa7b684a623495dd0c7e35611cb70b9c
                    [before] => 87aa2201e82a031e650e085f098e7f71e37f2045
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => a7960d4ffa7b684a623495dd0c7e35611cb70b9c
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added test for relationship getProperty
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/a7960d4ffa7b684a623495dd0c7e35611cb70b9c
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-15T21:49:44Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [11] => Array
        (
            [id] => 2515891724
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [ref] => relProp
                    [ref_type] => branch
                    [master_branch] => master
                    [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2015-01-15T21:45:59Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [12] => Array
        (
            [id] => 2515884689
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/23
                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/23/labels{/name}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/23/comments
                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/23/events
                            [html_url] => https://github.com/neoxygen/neo4j-neoclient/issues/23
                            [id] => 54456667
                            [number] => 23
                            [title] => Relationship->getProperty is either true of null
                            [user] => Array
                                (
                                    [login] => JackieXu
                                    [id] => 571054
                                    [avatar_url] => https://avatars.githubusercontent.com/u/571054?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/JackieXu
                                    [html_url] => https://github.com/JackieXu
                                    [followers_url] => https://api.github.com/users/JackieXu/followers
                                    [following_url] => https://api.github.com/users/JackieXu/following{/other_user}
                                    [gists_url] => https://api.github.com/users/JackieXu/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/JackieXu/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/JackieXu/subscriptions
                                    [organizations_url] => https://api.github.com/users/JackieXu/orgs
                                    [repos_url] => https://api.github.com/users/JackieXu/repos
                                    [events_url] => https://api.github.com/users/JackieXu/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/JackieXu/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => open
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 3
                            [created_at] => 2015-01-15T14:45:37Z
                            [updated_at] => 2015-01-15T21:43:02Z
                            [closed_at] =>
                            [body] => The following line:

    $value = isset($this->properties[$name]) ?: null;

will always evaluate to true or null.

Leaving out the middle part of PHP's ternary operator will make it equal to the first part, which is a boolean. I can send in a pull request, but I don't know where and how you would want those.

The following should work:

    $value = isset($this->properties[$name]) ? $this->properties[$name] : null;
                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/comments/70167528
                            [html_url] => https://github.com/neoxygen/neo4j-neoclient/issues/23#issuecomment-70167528
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/23
                            [id] => 70167528
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2015-01-15T21:43:02Z
                            [updated_at] => 2015-01-15T21:43:02Z
                            [body] => ha, I will check it. Thanks for reporting
                        )

                )

            [public] => 1
            [created_at] => 2015-01-15T21:43:02Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [13] => Array
        (
            [id] => 2515269264
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 18799315
                    [name] => coduo/php-matcher
                    [url] => https://api.github.com/repos/coduo/php-matcher
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2015-01-15T17:28:28Z
            [org] => Array
                (
                    [id] => 7405420
                    [login] => coduo
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/coduo
                    [avatar_url] => https://avatars.githubusercontent.com/u/7405420?
                )

        )

    [14] => Array
        (
            [id] => 2512035960
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 29219562
                    [name] => ikwattro/blog
                    [url] => https://api.github.com/repos/ikwattro/blog
                )

            [payload] => Array
                (
                    [push_id] => 546126167
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 2c01f1b621ceb4d9aa553e5332a26df4b45f9f05
                    [before] => 05fbac50c287a41103ae987eef9b130a039fd436
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 2c01f1b621ceb4d9aa553e5332a26df4b45f9f05
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added link to neo download and developer guide
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/blog/commits/2c01f1b621ceb4d9aa553e5332a26df4b45f9f05
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-14T13:40:18Z
        )

    [15] => Array
        (
            [id] => 2512001826
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 29219562
                    [name] => ikwattro/blog
                    [url] => https://api.github.com/repos/ikwattro/blog
                )

            [payload] => Array
                (
                    [push_id] => 546111371
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 05fbac50c287a41103ae987eef9b130a039fd436
                    [before] => a81d06aa63c5d4b655d49d160ffd4a4bf696278a
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 05fbac50c287a41103ae987eef9b130a039fd436
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added specific tpl for posts
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/blog/commits/05fbac50c287a41103ae987eef9b130a039fd436
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-14T13:22:35Z
        )

    [16] => Array
        (
            [id] => 2511960541
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 29219562
                    [name] => ikwattro/blog
                    [url] => https://api.github.com/repos/ikwattro/blog
                )

            [payload] => Array
                (
                    [push_id] => 546093149
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => a81d06aa63c5d4b655d49d160ffd4a4bf696278a
                    [before] => c94218d9ca78832d627299ecabd9edce916dea60
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => a81d06aa63c5d4b655d49d160ffd4a4bf696278a
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added readme
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/blog/commits/a81d06aa63c5d4b655d49d160ffd4a4bf696278a
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-14T12:59:43Z
        )

    [17] => Array
        (
            [id] => 2511957201
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 29219562
                    [name] => ikwattro/blog
                    [url] => https://api.github.com/repos/ikwattro/blog
                )

            [payload] => Array
                (
                    [push_id] => 546091759
                    [size] => 2
                    [distinct_size] => 2
                    [ref] => refs/heads/master
                    [head] => c94218d9ca78832d627299ecabd9edce916dea60
                    [before] => d49adaf8e967a64026a033af4738dc4bfdb03b36
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => e277ec5c955dde53fcc711af32ef155121225b77
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added renderer
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/blog/commits/e277ec5c955dde53fcc711af32ef155121225b77
                                )

                            [1] => Array
                                (
                                    [sha] => c94218d9ca78832d627299ecabd9edce916dea60
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => render script
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/blog/commits/c94218d9ca78832d627299ecabd9edce916dea60
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-14T12:57:54Z
        )

    [18] => Array
        (
            [id] => 2511865172
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 29219562
                    [name] => ikwattro/blog
                    [url] => https://api.github.com/repos/ikwattro/blog
                )

            [payload] => Array
                (
                    [push_id] => 546051838
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => d49adaf8e967a64026a033af4738dc4bfdb03b36
                    [before] => bb905ad9edff1583eaa9951f48985e95afa5ba52
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => d49adaf8e967a64026a033af4738dc4bfdb03b36
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added GA
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/blog/commits/d49adaf8e967a64026a033af4738dc4bfdb03b36
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-14T12:02:50Z
        )

    [19] => Array
        (
            [id] => 2511837877
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 29219562
                    [name] => ikwattro/blog
                    [url] => https://api.github.com/repos/ikwattro/blog
                )

            [payload] => Array
                (
                    [push_id] => 546039903
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => bb905ad9edff1583eaa9951f48985e95afa5ba52
                    [before] => 02dd907f019f0eb993450562d0af12d2b672c1c2
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => bb905ad9edff1583eaa9951f48985e95afa5ba52
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => changed title
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/blog/commits/bb905ad9edff1583eaa9951f48985e95afa5ba52
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-14T11:46:09Z
        )

    [20] => Array
        (
            [id] => 2511820431
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 29219562
                    [name] => ikwattro/blog
                    [url] => https://api.github.com/repos/ikwattro/blog
                )

            [payload] => Array
                (
                    [push_id] => 546032526
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 02dd907f019f0eb993450562d0af12d2b672c1c2
                    [before] => feee6d2cbc22dca0437c40aece666c5219d34532
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 02dd907f019f0eb993450562d0af12d2b672c1c2
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => move html to articles
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/blog/commits/02dd907f019f0eb993450562d0af12d2b672c1c2
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-14T11:35:47Z
        )

    [21] => Array
        (
            [id] => 2511818692
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 29219562
                    [name] => ikwattro/blog
                    [url] => https://api.github.com/repos/ikwattro/blog
                )

            [payload] => Array
                (
                    [push_id] => 546031777
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => feee6d2cbc22dca0437c40aece666c5219d34532
                    [before] => 54a550a53e9d707ea5e72875e95520b6eedce23b
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => feee6d2cbc22dca0437c40aece666c5219d34532
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => better title
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/blog/commits/feee6d2cbc22dca0437c40aece666c5219d34532
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-14T11:34:49Z
        )

    [22] => Array
        (
            [id] => 2511816808
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 29219562
                    [name] => ikwattro/blog
                    [url] => https://api.github.com/repos/ikwattro/blog
                )

            [payload] => Array
                (
                    [push_id] => 546030949
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 54a550a53e9d707ea5e72875e95520b6eedce23b
                    [before] => f4ee3cb2dbee35c162f02069dbecdea6ea6e9885
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 54a550a53e9d707ea5e72875e95520b6eedce23b
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => typo fix
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/blog/commits/54a550a53e9d707ea5e72875e95520b6eedce23b
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-14T11:33:46Z
        )

    [23] => Array
        (
            [id] => 2511811082
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 29219562
                    [name] => ikwattro/blog
                    [url] => https://api.github.com/repos/ikwattro/blog
                )

            [payload] => Array
                (
                    [push_id] => 546028428
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => f4ee3cb2dbee35c162f02069dbecdea6ea6e9885
                    [before] => 632e0b20b9076b7e41625d2eed0bab46d5e887e6
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => f4ee3cb2dbee35c162f02069dbecdea6ea6e9885
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => all fr
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/blog/commits/f4ee3cb2dbee35c162f02069dbecdea6ea6e9885
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-14T11:30:23Z
        )

    [24] => Array
        (
            [id] => 2511778126
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 29219562
                    [name] => ikwattro/blog
                    [url] => https://api.github.com/repos/ikwattro/blog
                )

            [payload] => Array
                (
                    [push_id] => 546014236
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 632e0b20b9076b7e41625d2eed0bab46d5e887e6
                    [before] => 0987ad30edb3caba3c33677dca16b7ebc2f171a6
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 632e0b20b9076b7e41625d2eed0bab46d5e887e6
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added use case 2
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/blog/commits/632e0b20b9076b7e41625d2eed0bab46d5e887e6
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-14T11:11:18Z
        )

    [25] => Array
        (
            [id] => 2511753662
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 29219562
                    [name] => ikwattro/blog
                    [url] => https://api.github.com/repos/ikwattro/blog
                )

            [payload] => Array
                (
                    [push_id] => 546003679
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 0987ad30edb3caba3c33677dca16b7ebc2f171a6
                    [before] => f0d54cb3bd663c3aab508e019d87107634de7113
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 0987ad30edb3caba3c33677dca16b7ebc2f171a6
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added first use case example
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/blog/commits/0987ad30edb3caba3c33677dca16b7ebc2f171a6
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-14T10:57:58Z
        )

    [26] => Array
        (
            [id] => 2511709319
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 29219562
                    [name] => ikwattro/blog
                    [url] => https://api.github.com/repos/ikwattro/blog
                )

            [payload] => Array
                (
                    [push_id] => 545984760
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => f0d54cb3bd663c3aab508e019d87107634de7113
                    [before] => 1565149098d71c8fe731437957e7f56c841922d5
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => f0d54cb3bd663c3aab508e019d87107634de7113
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => change back to home txt
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/blog/commits/f0d54cb3bd663c3aab508e019d87107634de7113
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-14T10:34:25Z
        )

    [27] => Array
        (
            [id] => 2511704897
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 29219562
                    [name] => ikwattro/blog
                    [url] => https://api.github.com/repos/ikwattro/blog
                )

            [payload] => Array
                (
                    [push_id] => 545982880
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 1565149098d71c8fe731437957e7f56c841922d5
                    [before] => ae072e48adefe0f273bf2046dbe7a4467379245e
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 1565149098d71c8fe731437957e7f56c841922d5
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => slogan change
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/blog/commits/1565149098d71c8fe731437957e7f56c841922d5
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-14T10:32:06Z
        )

    [28] => Array
        (
            [id] => 2511701041
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 29219562
                    [name] => ikwattro/blog
                    [url] => https://api.github.com/repos/ikwattro/blog
                )

            [payload] => Array
                (
                    [push_id] => 545981190
                    [size] => 2
                    [distinct_size] => 2
                    [ref] => refs/heads/master
                    [head] => ae072e48adefe0f273bf2046dbe7a4467379245e
                    [before] => fb20ac72a3e4a1a561cbdfc2efdf49d21bd7e138
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 57428b854b663b9c298bae4ddb60bdb2f75361c4
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => typo fixes
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/blog/commits/57428b854b663b9c298bae4ddb60bdb2f75361c4
                                )

                            [1] => Array
                                (
                                    [sha] => ae072e48adefe0f273bf2046dbe7a4467379245e
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => some minimal changes
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/blog/commits/ae072e48adefe0f273bf2046dbe7a4467379245e
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-14T10:30:08Z
        )

    [29] => Array
        (
            [id] => 2511093552
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 29219562
                    [name] => ikwattro/blog
                    [url] => https://api.github.com/repos/ikwattro/blog
                )

            [payload] => Array
                (
                    [push_id] => 545725932
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => fb20ac72a3e4a1a561cbdfc2efdf49d21bd7e138
                    [before] => 92de18c3670fbe8666520c6d8025b28a0d15c826
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => fb20ac72a3e4a1a561cbdfc2efdf49d21bd7e138
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => build
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/blog/commits/fb20ac72a3e4a1a561cbdfc2efdf49d21bd7e138
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-14T02:19:20Z
        )

    [30] => Array
        (
            [id] => 2511092667
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 29219562
                    [name] => ikwattro/blog
                    [url] => https://api.github.com/repos/ikwattro/blog
                )

            [payload] => Array
                (
                    [push_id] => 545725587
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 92de18c3670fbe8666520c6d8025b28a0d15c826
                    [before] => 4c47e8197cda8cb24cc5f2e38d52329814f08b25
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 92de18c3670fbe8666520c6d8025b28a0d15c826
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added graph img
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/blog/commits/92de18c3670fbe8666520c6d8025b28a0d15c826
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-14T02:18:33Z
        )

    [31] => Array
        (
            [id] => 2511090905
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 29219562
                    [name] => ikwattro/blog
                    [url] => https://api.github.com/repos/ikwattro/blog
                )

            [payload] => Array
                (
                    [push_id] => 545724919
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 4c47e8197cda8cb24cc5f2e38d52329814f08b25
                    [before] => 36c5620030c38032b1394d08e08eb41e72a2fa24
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 4c47e8197cda8cb24cc5f2e38d52329814f08b25
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added toc and author
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/blog/commits/4c47e8197cda8cb24cc5f2e38d52329814f08b25
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-14T02:17:10Z
        )

    [32] => Array
        (
            [id] => 2511084281
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 29219562
                    [name] => ikwattro/blog
                    [url] => https://api.github.com/repos/ikwattro/blog
                )

            [payload] => Array
                (
                    [push_id] => 545722290
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 36c5620030c38032b1394d08e08eb41e72a2fa24
                    [before] => 07eca95dbbd7b0dae4b91402ddaa507a41a5784f
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 36c5620030c38032b1394d08e08eb41e72a2fa24
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => finished neo intro fr
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/blog/commits/36c5620030c38032b1394d08e08eb41e72a2fa24
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-14T02:12:06Z
        )

    [33] => Array
        (
            [id] => 2511027891
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 29219562
                    [name] => ikwattro/blog
                    [url] => https://api.github.com/repos/ikwattro/blog
                )

            [payload] => Array
                (
                    [push_id] => 545700711
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 07eca95dbbd7b0dae4b91402ddaa507a41a5784f
                    [before] => c51d089b8a9263dedcf09c998eba5db3098758b5
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 07eca95dbbd7b0dae4b91402ddaa507a41a5784f
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => first draft neo4j introduction
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/blog/commits/07eca95dbbd7b0dae4b91402ddaa507a41a5784f
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-14T01:31:23Z
        )

    [34] => Array
        (
            [id] => 2510961959
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 29219562
                    [name] => ikwattro/blog
                    [url] => https://api.github.com/repos/ikwattro/blog
                )

            [payload] => Array
                (
                    [ref] => master
                    [ref_type] => branch
                    [master_branch] => master
                    [description] =>
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2015-01-14T00:46:40Z
        )

    [35] => Array
        (
            [id] => 2510960594
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 29219562
                    [name] => ikwattro/blog
                    [url] => https://api.github.com/repos/ikwattro/blog
                )

            [payload] => Array
                (
                    [ref] =>
                    [ref_type] => repository
                    [master_branch] => master
                    [description] =>
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2015-01-14T00:45:44Z
        )

    [36] => Array
        (
            [id] => 2510909609
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 16607974
                    [name] => asciidoctor/asciidoctor-extensions-lab
                    [url] => https://api.github.com/repos/asciidoctor/asciidoctor-extensions-lab
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2015-01-14T00:12:53Z
            [org] => Array
                (
                    [id] => 3137042
                    [login] => asciidoctor
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/asciidoctor
                    [avatar_url] => https://avatars.githubusercontent.com/u/3137042?
                )

        )

    [37] => Array
        (
            [id] => 2507469255
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 23597997
                    [name] => neo4j-contrib/developer-resources
                    [url] => https://api.github.com/repos/neo4j-contrib/developer-resources
                )

            [payload] => Array
                (
                    [action] => opened
                    [number] => 56
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/56
                            [id] => 27215404
                            [html_url] => https://github.com/neo4j-contrib/developer-resources/pull/56
                            [diff_url] => https://github.com/neo4j-contrib/developer-resources/pull/56.diff
                            [patch_url] => https://github.com/neo4j-contrib/developer-resources/pull/56.patch
                            [issue_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/56
                            [number] => 56
                            [state] => open
                            [locked] =>
                            [title] => Some tweaks after review
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] => * added neoclient to example apps list
* added sigma.js in viz libs
* one typo fix
                            [created_at] => 2015-01-12T18:34:00Z
                            [updated_at] => 2015-01-12T18:34:00Z
                            [closed_at] =>
                            [merged_at] =>
                            [merge_commit_sha] => ca51ce6fef5fec5ec0a59f58f7afe498dc116147
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/56/commits
                            [review_comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/56/comments
                            [review_comment_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/56/comments
                            [statuses_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/statuses/8fa57cd6f6430ec6fe0934c78381fc6280703474
                            [head] => Array
                                (
                                    [label] => ikwattro:review
                                    [ref] => review
                                    [sha] => 8fa57cd6f6430ec6fe0934c78381fc6280703474
                                    [user] => Array
                                        (
                                            [login] => ikwattro
                                            [id] => 1222009
                                            [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/ikwattro
                                            [html_url] => https://github.com/ikwattro
                                            [followers_url] => https://api.github.com/users/ikwattro/followers
                                            [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                            [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                            [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                            [repos_url] => https://api.github.com/users/ikwattro/repos
                                            [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                            [type] => User
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 27306229
                                            [name] => developer-resources
                                            [full_name] => ikwattro/developer-resources
                                            [owner] => Array
                                                (
                                                    [login] => ikwattro
                                                    [id] => 1222009
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/ikwattro
                                                    [html_url] => https://github.com/ikwattro
                                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                                    [type] => User
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/ikwattro/developer-resources
                                            [description] => neo4j developer resources
                                            [fork] => 1
                                            [url] => https://api.github.com/repos/ikwattro/developer-resources
                                            [forks_url] => https://api.github.com/repos/ikwattro/developer-resources/forks
                                            [keys_url] => https://api.github.com/repos/ikwattro/developer-resources/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/ikwattro/developer-resources/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/ikwattro/developer-resources/teams
                                            [hooks_url] => https://api.github.com/repos/ikwattro/developer-resources/hooks
                                            [issue_events_url] => https://api.github.com/repos/ikwattro/developer-resources/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/ikwattro/developer-resources/events
                                            [assignees_url] => https://api.github.com/repos/ikwattro/developer-resources/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/ikwattro/developer-resources/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/ikwattro/developer-resources/tags
                                            [blobs_url] => https://api.github.com/repos/ikwattro/developer-resources/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/ikwattro/developer-resources/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/ikwattro/developer-resources/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/ikwattro/developer-resources/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/ikwattro/developer-resources/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/ikwattro/developer-resources/languages
                                            [stargazers_url] => https://api.github.com/repos/ikwattro/developer-resources/stargazers
                                            [contributors_url] => https://api.github.com/repos/ikwattro/developer-resources/contributors
                                            [subscribers_url] => https://api.github.com/repos/ikwattro/developer-resources/subscribers
                                            [subscription_url] => https://api.github.com/repos/ikwattro/developer-resources/subscription
                                            [commits_url] => https://api.github.com/repos/ikwattro/developer-resources/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/ikwattro/developer-resources/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/ikwattro/developer-resources/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/ikwattro/developer-resources/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/ikwattro/developer-resources/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/ikwattro/developer-resources/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/ikwattro/developer-resources/merges
                                            [archive_url] => https://api.github.com/repos/ikwattro/developer-resources/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/ikwattro/developer-resources/downloads
                                            [issues_url] => https://api.github.com/repos/ikwattro/developer-resources/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/ikwattro/developer-resources/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/ikwattro/developer-resources/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/ikwattro/developer-resources/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/ikwattro/developer-resources/labels{/name}
                                            [releases_url] => https://api.github.com/repos/ikwattro/developer-resources/releases{/id}
                                            [created_at] => 2014-11-29T15:31:08Z
                                            [updated_at] => 2015-01-12T18:26:49Z
                                            [pushed_at] => 2015-01-12T18:32:57Z
                                            [git_url] => git://github.com/ikwattro/developer-resources.git
                                            [ssh_url] => git@github.com:ikwattro/developer-resources.git
                                            [clone_url] => https://github.com/ikwattro/developer-resources.git
                                            [svn_url] => https://github.com/ikwattro/developer-resources
                                            [homepage] =>
                                            [size] => 9154
                                            [stargazers_count] => 0
                                            [watchers_count] => 0
                                            [language] => Python
                                            [has_issues] =>
                                            [has_downloads] => 1
                                            [has_wiki] =>
                                            [has_pages] => 1
                                            [forks_count] => 0
                                            [mirror_url] =>
                                            [open_issues_count] => 0
                                            [forks] => 0
                                            [open_issues] => 0
                                            [watchers] => 0
                                            [default_branch] => gh-pages
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => neo4j-contrib:gh-pages
                                    [ref] => gh-pages
                                    [sha] => 068dfe43a99abcc4ac97c8152a9b044d3428100c
                                    [user] => Array
                                        (
                                            [login] => neo4j-contrib
                                            [id] => 916372
                                            [avatar_url] => https://avatars.githubusercontent.com/u/916372?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neo4j-contrib
                                            [html_url] => https://github.com/neo4j-contrib
                                            [followers_url] => https://api.github.com/users/neo4j-contrib/followers
                                            [following_url] => https://api.github.com/users/neo4j-contrib/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neo4j-contrib/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neo4j-contrib/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neo4j-contrib/subscriptions
                                            [organizations_url] => https://api.github.com/users/neo4j-contrib/orgs
                                            [repos_url] => https://api.github.com/users/neo4j-contrib/repos
                                            [events_url] => https://api.github.com/users/neo4j-contrib/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neo4j-contrib/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 23597997
                                            [name] => developer-resources
                                            [full_name] => neo4j-contrib/developer-resources
                                            [owner] => Array
                                                (
                                                    [login] => neo4j-contrib
                                                    [id] => 916372
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/916372?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neo4j-contrib
                                                    [html_url] => https://github.com/neo4j-contrib
                                                    [followers_url] => https://api.github.com/users/neo4j-contrib/followers
                                                    [following_url] => https://api.github.com/users/neo4j-contrib/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neo4j-contrib/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neo4j-contrib/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neo4j-contrib/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neo4j-contrib/orgs
                                                    [repos_url] => https://api.github.com/users/neo4j-contrib/repos
                                                    [events_url] => https://api.github.com/users/neo4j-contrib/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neo4j-contrib/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neo4j-contrib/developer-resources
                                            [description] => neo4j developer resources
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources
                                            [forks_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/forks
                                            [keys_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/teams
                                            [hooks_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/hooks
                                            [issue_events_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/events
                                            [assignees_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/tags
                                            [blobs_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/languages
                                            [stargazers_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/stargazers
                                            [contributors_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/contributors
                                            [subscribers_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/subscribers
                                            [subscription_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/subscription
                                            [commits_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/merges
                                            [archive_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/downloads
                                            [issues_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/releases{/id}
                                            [created_at] => 2014-09-02T22:33:24Z
                                            [updated_at] => 2015-01-12T15:51:52Z
                                            [pushed_at] => 2015-01-12T13:10:55Z
                                            [git_url] => git://github.com/neo4j-contrib/developer-resources.git
                                            [ssh_url] => git@github.com:neo4j-contrib/developer-resources.git
                                            [clone_url] => https://github.com/neo4j-contrib/developer-resources.git
                                            [svn_url] => https://github.com/neo4j-contrib/developer-resources
                                            [homepage] =>
                                            [size] => 12993
                                            [stargazers_count] => 29
                                            [watchers_count] => 29
                                            [language] => Python
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] =>
                                            [has_pages] => 1
                                            [forks_count] => 75
                                            [mirror_url] =>
                                            [open_issues_count] => 11
                                            [forks] => 75
                                            [open_issues] => 11
                                            [watchers] => 29
                                            [default_branch] => gh-pages
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/56
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neo4j-contrib/developer-resources/pull/56
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/56
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/56/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/56/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/56/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/statuses/8fa57cd6f6430ec6fe0934c78381fc6280703474
                                        )

                                )

                            [merged] =>
                            [mergeable] => 1
                            [mergeable_state] => clean
                            [merged_by] =>
                            [comments] => 0
                            [review_comments] => 0
                            [commits] => 1
                            [additions] => 3
                            [deletions] => 1
                            [changed_files] => 2
                        )

                )

            [public] => 1
            [created_at] => 2015-01-12T18:34:00Z
            [org] => Array
                (
                    [id] => 916372
                    [login] => neo4j-contrib
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neo4j-contrib
                    [avatar_url] => https://avatars.githubusercontent.com/u/916372?
                )

        )

    [38] => Array
        (
            [id] => 2507466909
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 27306229
                    [name] => ikwattro/developer-resources
                    [url] => https://api.github.com/repos/ikwattro/developer-resources
                )

            [payload] => Array
                (
                    [ref] => review
                    [ref_type] => branch
                    [master_branch] => gh-pages
                    [description] => neo4j developer resources
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2015-01-12T18:32:57Z
        )

    [39] => Array
        (
            [id] => 2507452345
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 27306229
                    [name] => ikwattro/developer-resources
                    [url] => https://api.github.com/repos/ikwattro/developer-resources
                )

            [payload] => Array
                (
                    [push_id] => 544269382
                    [size] => 55
                    [distinct_size] => 54
                    [ref] => refs/heads/gh-pages
                    [head] => 068dfe43a99abcc4ac97c8152a9b044d3428100c
                    [before] => ad8446a824cbe9decbf64c541510dfe85d90fa71
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 42e542df379066bf22cac210cd92141f08f37a7c
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => adapted phpdoc to @jexp suggestions
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/42e542df379066bf22cac210cd92141f08f37a7c
                                )

                            [1] => Array
                                (
                                    [sha] => dd5d9bde80cde2fe28a04f044455a4cc29cc821b
                                    [author] => Array
                                        (
                                            [email] => github@jexp.de
                                            [name] => Michael Hunger
                                        )

                                    [message] => Merge pull request #50 from ikwattro/phpdoc

adapted phpdoc to @jexp suggestions
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/dd5d9bde80cde2fe28a04f044455a4cc29cc821b
                                )

                            [2] => Array
                                (
                                    [sha] => 72dceb18ab939cb0d9745b349dab371fd59a3270
                                    [author] => Array
                                        (
                                            [email] => gpierrick@timeblend.com
                                            [name] => Pierrick Ganon
                                        )

                                    [message] => fixed graph endpoint
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/72dceb18ab939cb0d9745b349dab371fd59a3270
                                )

                            [3] => Array
                                (
                                    [sha] => 2746a51b586c2faa1ba5fc967de80b08d81611f5
                                    [author] => Array
                                        (
                                            [email] => gpierrick@timeblend.com
                                            [name] => Pierrick Ganon
                                        )

                                    [message] => Merge branch 'gh-pages' of https://github.com/neo4j-contrib/developer-resources into gh-pages
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/2746a51b586c2faa1ba5fc967de80b08d81611f5
                                )

                            [4] => Array
                                (
                                    [sha] => 8e6a19b3c0f0da161fa5c415b1b9021775188129
                                    [author] => Array
                                        (
                                            [email] => gpierrick@timeblend.com
                                            [name] => Pierrick Ganon
                                        )

                                    [message] => fixed min version of js file
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/8e6a19b3c0f0da161fa5c415b1b9021775188129
                                )

                            [5] => Array
                                (
                                    [sha] => 02cc3617183c49f95ecc1b162ef94a5f3bfc679a
                                    [author] => Array
                                        (
                                            [email] => cescala2@gmail.com
                                            [name] => whatSocks
                                        )

                                    [message] => Merge pull request #54 from gpierrick/gh-pages

Fixed /graph endpoint to return desired format nodes/rels
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/02cc3617183c49f95ecc1b162ef94a5f3bfc679a
                                )

                            [6] => Array
                                (
                                    [sha] => d1680da38f4abf8cfc28627489fcebc3e31c75ce
                                    [author] => Array
                                        (
                                            [email] => github@jexp.de
                                            [name] => Michael Hunger
                                        )

                                    [message] => dotnet mono compatibility
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/d1680da38f4abf8cfc28627489fcebc3e31c75ce
                                )

                            [7] => Array
                                (
                                    [sha] => 84a6c6a8763e1541ccd1b1ceed704acd8e184f81
                                    [author] => Array
                                        (
                                            [email] => github@jexp.de
                                            [name] => Michael Hunger
                                        )

                                    [message] => gitignore
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/84a6c6a8763e1541ccd1b1ceed704acd8e184f81
                                )

                            [8] => Array
                                (
                                    [sha] => 0c7085ebff835d039de4fb98338429bd270a2bcc
                                    [author] => Array
                                        (
                                            [email] => github@jexp.de
                                            [name] => Michael Hunger
                                        )

                                    [message] => minimal template update
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/0c7085ebff835d039de4fb98338429bd270a2bcc
                                )

                            [9] => Array
                                (
                                    [sha] => 25cb53f35323230054d1926cd17168ea44b8c135
                                    [author] => Array
                                        (
                                            [email] => github@jexp.de
                                            [name] => Michael Hunger
                                        )

                                    [message] =>  added seraph and meteor to javascript
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/25cb53f35323230054d1926cd17168ea44b8c135
                                )

                            [10] => Array
                                (
                                    [sha] => 6c5b759462bf8849fcf62ea5d9e4768ea164f8a6
                                    [author] => Array
                                        (
                                            [email] => github@jexp.de
                                            [name] => Michael Hunger
                                        )

                                    [message] => added docker to cloud, removed graphhost
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/6c5b759462bf8849fcf62ea5d9e4768ea164f8a6
                                )

                            [11] => Array
                                (
                                    [sha] => 6f519422f95e0d7db75f874b9739922f888a5896
                                    [author] => Array
                                        (
                                            [email] => github@jexp.de
                                            [name] => Michael Hunger
                                        )

                                    [message] => wording update relational comparison
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/6f519422f95e0d7db75f874b9739922f888a5896
                                )

                            [12] => Array
                                (
                                    [sha] => a64c54fa42437b39ee962d7eaebad19ec0a31d19
                                    [author] => Array
                                        (
                                            [email] => github@jexp.de
                                            [name] => Michael Hunger
                                        )

                                    [message] => Updated ETL Section

* Correct lower-case property-names in Cypher
* Added SQL, Cypher, CSV files
* Changed fixed text to includes
* Fixed table rendering
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/a64c54fa42437b39ee962d7eaebad19ec0a31d19
                                )

                            [13] => Array
                                (
                                    [sha] => f4e7aae572542705f94c7ecc9260397c1c8b4d2e
                                    [author] => Array
                                        (
                                            [email] => github@jexp.de
                                            [name] => Michael Hunger
                                        )

                                    [message] => added import-tool to import-csv-guide
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/f4e7aae572542705f94c7ecc9260397c1c8b4d2e
                                )

                            [14] => Array
                                (
                                    [sha] => ef471470abcfbf7556b66873325e42525803902d
                                    [author] => Array
                                        (
                                            [email] => github@jexp.de
                                            [name] => Michael Hunger
                                        )

                                    [message] => first draft sql to cypher - WIP
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/ef471470abcfbf7556b66873325e42525803902d
                                )

                            [15] => Array
                                (
                                    [sha] => 43176f9c95179ef27825e47ac2fb1490d76f5cba
                                    [author] => Array
                                        (
                                            [email] => github@jexp.de
                                            [name] => Michael Hunger
                                        )

                                    [message] => content update
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/43176f9c95179ef27825e47ac2fb1490d76f5cba
                                )

                            [16] => Array
                                (
                                    [sha] => 7b0f5ea657954e02622af4c24bd619956c8ea231
                                    [author] => Array
                                        (
                                            [email] => github@jexp.de
                                            [name] => Michael Hunger
                                        )

                                    [message] => minimal update ruby page
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/7b0f5ea657954e02622af4c24bd619956c8ea231
                                )

                            [17] => Array
                                (
                                    [sha] => ab9eb343148e911ffc357c4818ae4bd5e3f36d8b
                                    [author] => Array
                                        (
                                            [email] => github@jexp.de
                                            [name] => Michael Hunger
                                        )

                                    [message] => removed static meta tags from template
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/ab9eb343148e911ffc357c4818ae4bd5e3f36d8b
                                )

                            [18] => Array
                                (
                                    [sha] => 947e2345deea676da1207db632ffccb4d2233de1
                                    [author] => Array
                                        (
                                            [email] => github@jexp.de
                                            [name] => Michael Hunger
                                        )

                                    [message] => wording updates
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/947e2345deea676da1207db632ffccb4d2233de1
                                )

                            [19] => Array
                                (
                                    [sha] => 15df0955d4534412748ca44c8c09fa266d2c48ce
                                    [author] => Array
                                        (
                                            [email] => github@jexp.de
                                            [name] => Michael Hunger
                                        )

                                    [message] => update sql to cypher section
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/15df0955d4534412748ca44c8c09fa266d2c48ce
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-12T18:26:48Z
        )

    [40] => Array
        (
            [id] => 2504941282
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 2255947
                    [name] => cytoscape/cytoscape.js
                    [url] => https://api.github.com/repos/cytoscape/cytoscape.js
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2015-01-10T21:15:23Z
            [org] => Array
                (
                    [id] => 956141
                    [login] => cytoscape
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/cytoscape
                    [avatar_url] => https://avatars.githubusercontent.com/u/956141?
                )

        )

    [41] => Array
        (
            [id] => 2500760820
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 541442298
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/refactoring
                    [head] => 3d186e682f9a2951818cd47371d7c026c5825eb6
                    [before] => abdbde49114b9afa090ab95e27eb7b3eb2661107
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 3d186e682f9a2951818cd47371d7c026c5825eb6
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added marker
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/3d186e682f9a2951818cd47371d7c026c5825eb6
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-08T15:51:58Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [42] => Array
        (
            [id] => 2500752103
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 541438786
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/refactoring
                    [head] => abdbde49114b9afa090ab95e27eb7b3eb2661107
                    [before] => 344e3c8924274e112f8aed6e74814b9c385ffce7
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => abdbde49114b9afa090ab95e27eb7b3eb2661107
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => used hash table lookup for processor usedTargets
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/abdbde49114b9afa090ab95e27eb7b3eb2661107
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-08T15:48:32Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [43] => Array
        (
            [id] => 2500388784
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 541287204
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/refactoring
                    [head] => 344e3c8924274e112f8aed6e74814b9c385ffce7
                    [before] => 8f940837b2e85c1bb3cfe3a193fc8fa76bc8607a
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 344e3c8924274e112f8aed6e74814b9c385ffce7
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added simple yaml schema functional test
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/344e3c8924274e112f8aed6e74814b9c385ffce7
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-08T12:53:00Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [44] => Array
        (
            [id] => 2500362715
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 541276038
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/refactoring
                    [head] => 8f940837b2e85c1bb3cfe3a193fc8fa76bc8607a
                    [before] => 11297f2167012328482d65c629855756ffef1556
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 8f940837b2e85c1bb3cfe3a193fc8fa76bc8607a
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added some tests for build time
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/8f940837b2e85c1bb3cfe3a193fc8fa76bc8607a
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-08T12:36:26Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [45] => Array
        (
            [id] => 2500353537
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 541272134
                    [size] => 3
                    [distinct_size] => 3
                    [ref] => refs/heads/refactoring
                    [head] => 11297f2167012328482d65c629855756ffef1556
                    [before] => 5227f95f59a67034142c0dc4e7c483bae61ab247
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 298accecf9676af93f91b895dff6e92cad99b7cf
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => schema builder declared as service
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/298accecf9676af93f91b895dff6e92cad99b7cf
                                )

                            [1] => Array
                                (
                                    [sha] => 578bfcc3a0c0aff1c315a75d8e7f6984befbcb0b
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added graph serializer service
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/578bfcc3a0c0aff1c315a75d8e7f6984befbcb0b
                                )

                            [2] => Array
                                (
                                    [sha] => 11297f2167012328482d65c629855756ffef1556
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => graphs can now be serialized internally
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/11297f2167012328482d65c629855756ffef1556
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-08T12:30:35Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [46] => Array
        (
            [id] => 2498936263
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 25119301
                    [name] => ikwattro/neo4j-neoclient-example
                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example
                )

            [payload] => Array
                (
                    [push_id] => 540690592
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 9f9673af06619c50783aeb0b211beb5382e8bdb6
                    [before] => b51a69f832c160eadef6193ba871f777b4574b5f
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 9f9673af06619c50783aeb0b211beb5382e8bdb6
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => increased timeout for first import
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example/commits/9f9673af06619c50783aeb0b211beb5382e8bdb6
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-07T20:16:52Z
        )

    [47] => Array
        (
            [id] => 2498892415
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 25119301
                    [name] => ikwattro/neo4j-neoclient-example
                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example
                )

            [payload] => Array
                (
                    [push_id] => 540673181
                    [size] => 4
                    [distinct_size] => 0
                    [ref] => refs/heads/master
                    [head] => b51a69f832c160eadef6193ba871f777b4574b5f
                    [before] => b1a2baf1504871d927f0a4ff4aee11cc16ef4b88
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 00380290131d9416ef85b519db07b0fbf7154519
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => gsenv
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example/commits/00380290131d9416ef85b519db07b0fbf7154519
                                )

                            [1] => Array
                                (
                                    [sha] => 3d295fc8c9a5d2778664d3ff41026374e533ca5f
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed bad addon name
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example/commits/3d295fc8c9a5d2778664d3ff41026374e533ca5f
                                )

                            [2] => Array
                                (
                                    [sha] => 0443b8e2297b580b5008db79fac50ad4096e32b8
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => updated index
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example/commits/0443b8e2297b580b5008db79fac50ad4096e32b8
                                )

                            [3] => Array
                                (
                                    [sha] => b51a69f832c160eadef6193ba871f777b4574b5f
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => changed readme
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example/commits/b51a69f832c160eadef6193ba871f777b4574b5f
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-07T19:57:28Z
        )

    [48] => Array
        (
            [id] => 2498891844
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 25119301
                    [name] => ikwattro/neo4j-neoclient-example
                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example
                )

            [payload] => Array
                (
                    [push_id] => 540672984
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/gs
                    [head] => b51a69f832c160eadef6193ba871f777b4574b5f
                    [before] => 0443b8e2297b580b5008db79fac50ad4096e32b8
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => b51a69f832c160eadef6193ba871f777b4574b5f
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => changed readme
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example/commits/b51a69f832c160eadef6193ba871f777b4574b5f
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-07T19:57:13Z
        )

    [49] => Array
        (
            [id] => 2498882302
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 25119301
                    [name] => ikwattro/neo4j-neoclient-example
                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example
                )

            [payload] => Array
                (
                    [push_id] => 540669289
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/gs
                    [head] => 0443b8e2297b580b5008db79fac50ad4096e32b8
                    [before] => 3d295fc8c9a5d2778664d3ff41026374e533ca5f
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 0443b8e2297b580b5008db79fac50ad4096e32b8
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => updated index
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example/commits/0443b8e2297b580b5008db79fac50ad4096e32b8
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-07T19:53:09Z
        )

    [50] => Array
        (
            [id] => 2498816335
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 25119301
                    [name] => ikwattro/neo4j-neoclient-example
                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example
                )

            [payload] => Array
                (
                    [push_id] => 540643672
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/gs
                    [head] => 3d295fc8c9a5d2778664d3ff41026374e533ca5f
                    [before] => 00380290131d9416ef85b519db07b0fbf7154519
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 3d295fc8c9a5d2778664d3ff41026374e533ca5f
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed bad addon name
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example/commits/3d295fc8c9a5d2778664d3ff41026374e533ca5f
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-07T19:25:17Z
        )

    [51] => Array
        (
            [id] => 2498810888
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 25119301
                    [name] => ikwattro/neo4j-neoclient-example
                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example
                )

            [payload] => Array
                (
                    [ref] => gs
                    [ref_type] => branch
                    [master_branch] => master
                    [description] => Simple PHP Silex App using NeoClient for Neo4j
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2015-01-07T19:22:56Z
        )

    [52] => Array
        (
            [id] => 2497971896
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 540302665
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 744a62df106e2a0ad719ff467e08715c1283fc19
                    [before] => 8399b6bf16df52e276e4bd0bf2c1098cf0350ec1
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 744a62df106e2a0ad719ff467e08715c1283fc19
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => updated neo4j version requirement
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/744a62df106e2a0ad719ff467e08715c1283fc19
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-07T12:58:48Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [53] => Array
        (
            [id] => 2496688686
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 23888502
                    [name] => GraphStory/neo4j-ios
                    [url] => https://api.github.com/repos/GraphStory/neo4j-ios
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2015-01-06T21:28:50Z
            [org] => Array
                (
                    [id] => 7378594
                    [login] => GraphStory
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/GraphStory
                    [avatar_url] => https://avatars.githubusercontent.com/u/7378594?
                )

        )

    [54] => Array
        (
            [id] => 2494914678
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 539056820
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/refactoring
                    [head] => 5227f95f59a67034142c0dc4e7c483bae61ab247
                    [before] => f217cecdbc46e37fc04b2465fe427417121d801b
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 5227f95f59a67034142c0dc4e7c483bae61ab247
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => minor refactoring cypher parser
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/5227f95f59a67034142c0dc4e7c483bae61ab247
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-06T03:26:55Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [55] => Array
        (
            [id] => 2494891824
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 539047750
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/refactoring
                    [head] => f217cecdbc46e37fc04b2465fe427417121d801b
                    [before] => ec9da62582d852c8136893b0753c20a4bf95f1e5
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => f217cecdbc46e37fc04b2465fe427417121d801b
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => removed old processors
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/f217cecdbc46e37fc04b2465fe427417121d801b
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-06T03:04:08Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [56] => Array
        (
            [id] => 2494884772
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 539045020
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/refactoring
                    [head] => ec9da62582d852c8136893b0753c20a4bf95f1e5
                    [before] => 288ca0d7f8822a27629105480734ff93ce4e46af
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => ec9da62582d852c8136893b0753c20a4bf95f1e5
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => prepare setup for phpunti with new neogen
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/ec9da62582d852c8136893b0753c20a4bf95f1e5
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-06T02:57:51Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [57] => Array
        (
            [id] => 2494882602
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 539044106
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/refactoring
                    [head] => 288ca0d7f8822a27629105480734ff93ce4e46af
                    [before] => 6da08992149cb6922cad9cb4e81eee0234e42f5f
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 288ca0d7f8822a27629105480734ff93ce4e46af
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => GraphProcessor returns now a GraphObject
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/288ca0d7f8822a27629105480734ff93ce4e46af
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-06T02:55:52Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [58] => Array
        (
            [id] => 2494816776
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 539018306
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/refactoring
                    [head] => 6da08992149cb6922cad9cb4e81eee0234e42f5f
                    [before] => 57a5bdba4175ebaf42976a795a71cd095c147727
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 6da08992149cb6922cad9cb4e81eee0234e42f5f
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => 1toN relationship added
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/6da08992149cb6922cad9cb4e81eee0234e42f5f
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-06T01:58:23Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [59] => Array
        (
            [id] => 2494430525
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24947938
                    [name] => neoxygen/graphgen
                    [url] => https://api.github.com/repos/neoxygen/graphgen
                )

            [payload] => Array
                (
                    [push_id] => 538869295
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 45fe3c30c3f5e4d3172e42c3d87bc63ff1181eda
                    [before] => b9dfec45e297d0cbd650e191be12c7d6df81d981
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 45fe3c30c3f5e4d3172e42c3d87bc63ff1181eda
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => * Updated deps
* Fixed bug when using link, escaping slashes were not removed from the pattern
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/graphgen/commits/45fe3c30c3f5e4d3172e42c3d87bc63ff1181eda
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-05T21:57:12Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [60] => Array
        (
            [id] => 2494419336
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 25320454
                    [name] => neoxygen/neo4j-console-client
                    [url] => https://api.github.com/repos/neoxygen/neo4j-console-client
                )

            [payload] => Array
                (
                    [ref] => 1.0.0
                    [ref_type] => tag
                    [master_branch] => master
                    [description] => Simple PHP Client to create Neo4j Console setups
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2015-01-05T21:51:58Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [61] => Array
        (
            [id] => 2494402250
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [ref] => 0.5.7
                    [ref_type] => tag
                    [master_branch] => master
                    [description] => Easy generation of dummy Neo4j graphs with PHP
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2015-01-05T21:44:02Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [62] => Array
        (
            [id] => 2494401826
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 538858251
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 9896acf2e12616c35c83be08140c4304752911fd
                    [before] => 6d10dc8e05618076b68e3a95c4194fae0f2f8f86
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 9896acf2e12616c35c83be08140c4304752911fd
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => update deps
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/9896acf2e12616c35c83be08140c4304752911fd
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-05T21:43:48Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [63] => Array
        (
            [id] => 2493449918
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [ref] => 2.0.9
                    [ref_type] => tag
                    [master_branch] => master
                    [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2015-01-05T14:30:22Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [64] => Array
        (
            [id] => 2493449432
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 538492107
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 8399b6bf16df52e276e4bd0bf2c1098cf0350ec1
                    [before] => 52a1499fce88ae51331fdf4f7f1514c5d4ec7cac
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 8399b6bf16df52e276e4bd0bf2c1098cf0350ec1
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => * You can now define your own formatter class
* Code styling fixs
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/8399b6bf16df52e276e4bd0bf2c1098cf0350ec1
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-05T14:30:10Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [65] => Array
        (
            [id] => 2493438585
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [ref] => 2.0.8
                    [ref_type] => tag
                    [master_branch] => master
                    [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2015-01-05T14:24:16Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [66] => Array
        (
            [id] => 2493436736
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 538486853
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 52a1499fce88ae51331fdf4f7f1514c5d4ec7cac
                    [before] => a7e694e10a2c9d645900140b1069d8679d084aa0
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 52a1499fce88ae51331fdf4f7f1514c5d4ec7cac
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed passing a string to foreach
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/52a1499fce88ae51331fdf4f7f1514c5d4ec7cac
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-05T14:23:14Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [67] => Array
        (
            [id] => 2492478273
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 13395052
                    [name] => mholt/PapaParse
                    [url] => https://api.github.com/repos/mholt/PapaParse
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2015-01-04T23:06:50Z
        )

    [68] => Array
        (
            [id] => 2491779338
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 2579314
                    [name] => fzaninotto/Faker
                    [url] => https://api.github.com/repos/fzaninotto/Faker
                )

            [payload] => Array
                (
                    [action] => opened
                    [number] => 491
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/fzaninotto/Faker/pulls/491
                            [id] => 26788708
                            [html_url] => https://github.com/fzaninotto/Faker/pull/491
                            [diff_url] => https://github.com/fzaninotto/Faker/pull/491.diff
                            [patch_url] => https://github.com/fzaninotto/Faker/pull/491.patch
                            [issue_url] => https://api.github.com/repos/fzaninotto/Faker/issues/491
                            [number] => 491
                            [state] => open
                            [locked] =>
                            [title] => Improve unique generator performance
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] => Hi,

Currently the unique generator keeps the already used elements as array values and performs the lookup with `in_array` to assert that the generated value has not already been used. This operation is a O(n) operation which becomes slower in time for large datasets generation.

I refactored this operation to uses array indexes instead, which will leads to hash table lookups that are O(1) operations.

I did a little benchmark generating 10k unixTimes, the generation time is decreased from 1.77 seconds to 0.37 seconds.

                            [created_at] => 2015-01-04T00:19:21Z
                            [updated_at] => 2015-01-04T00:19:21Z
                            [closed_at] =>
                            [merged_at] =>
                            [merge_commit_sha] =>
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/fzaninotto/Faker/pulls/491/commits
                            [review_comments_url] => https://api.github.com/repos/fzaninotto/Faker/pulls/491/comments
                            [review_comment_url] => https://api.github.com/repos/fzaninotto/Faker/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/fzaninotto/Faker/issues/491/comments
                            [statuses_url] => https://api.github.com/repos/fzaninotto/Faker/statuses/bdf1848e638e2431b57646f54a984ff8f8893fe5
                            [head] => Array
                                (
                                    [label] => ikwattro:unique-perf
                                    [ref] => unique-perf
                                    [sha] => bdf1848e638e2431b57646f54a984ff8f8893fe5
                                    [user] => Array
                                        (
                                            [login] => ikwattro
                                            [id] => 1222009
                                            [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/ikwattro
                                            [html_url] => https://github.com/ikwattro
                                            [followers_url] => https://api.github.com/users/ikwattro/followers
                                            [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                            [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                            [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                            [repos_url] => https://api.github.com/users/ikwattro/repos
                                            [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                            [type] => User
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 28758243
                                            [name] => Faker
                                            [full_name] => ikwattro/Faker
                                            [owner] => Array
                                                (
                                                    [login] => ikwattro
                                                    [id] => 1222009
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/ikwattro
                                                    [html_url] => https://github.com/ikwattro
                                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                                    [type] => User
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/ikwattro/Faker
                                            [description] => Faker is a PHP library that generates fake data for you
                                            [fork] => 1
                                            [url] => https://api.github.com/repos/ikwattro/Faker
                                            [forks_url] => https://api.github.com/repos/ikwattro/Faker/forks
                                            [keys_url] => https://api.github.com/repos/ikwattro/Faker/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/ikwattro/Faker/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/ikwattro/Faker/teams
                                            [hooks_url] => https://api.github.com/repos/ikwattro/Faker/hooks
                                            [issue_events_url] => https://api.github.com/repos/ikwattro/Faker/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/ikwattro/Faker/events
                                            [assignees_url] => https://api.github.com/repos/ikwattro/Faker/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/ikwattro/Faker/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/ikwattro/Faker/tags
                                            [blobs_url] => https://api.github.com/repos/ikwattro/Faker/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/ikwattro/Faker/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/ikwattro/Faker/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/ikwattro/Faker/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/ikwattro/Faker/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/ikwattro/Faker/languages
                                            [stargazers_url] => https://api.github.com/repos/ikwattro/Faker/stargazers
                                            [contributors_url] => https://api.github.com/repos/ikwattro/Faker/contributors
                                            [subscribers_url] => https://api.github.com/repos/ikwattro/Faker/subscribers
                                            [subscription_url] => https://api.github.com/repos/ikwattro/Faker/subscription
                                            [commits_url] => https://api.github.com/repos/ikwattro/Faker/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/ikwattro/Faker/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/ikwattro/Faker/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/ikwattro/Faker/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/ikwattro/Faker/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/ikwattro/Faker/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/ikwattro/Faker/merges
                                            [archive_url] => https://api.github.com/repos/ikwattro/Faker/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/ikwattro/Faker/downloads
                                            [issues_url] => https://api.github.com/repos/ikwattro/Faker/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/ikwattro/Faker/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/ikwattro/Faker/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/ikwattro/Faker/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/ikwattro/Faker/labels{/name}
                                            [releases_url] => https://api.github.com/repos/ikwattro/Faker/releases{/id}
                                            [created_at] => 2015-01-04T00:06:38Z
                                            [updated_at] => 2015-01-04T00:06:39Z
                                            [pushed_at] => 2015-01-04T00:14:38Z
                                            [git_url] => git://github.com/ikwattro/Faker.git
                                            [ssh_url] => git@github.com:ikwattro/Faker.git
                                            [clone_url] => https://github.com/ikwattro/Faker.git
                                            [svn_url] => https://github.com/ikwattro/Faker
                                            [homepage] =>
                                            [size] => 6597
                                            [stargazers_count] => 0
                                            [watchers_count] => 0
                                            [language] => PHP
                                            [has_issues] =>
                                            [has_downloads] => 1
                                            [has_wiki] =>
                                            [has_pages] =>
                                            [forks_count] => 0
                                            [mirror_url] =>
                                            [open_issues_count] => 0
                                            [forks] => 0
                                            [open_issues] => 0
                                            [watchers] => 0
                                            [default_branch] => master
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => fzaninotto:master
                                    [ref] => master
                                    [sha] => 293b16ef75e09d511ca4ab131e7fa4c093534e6b
                                    [user] => Array
                                        (
                                            [login] => fzaninotto
                                            [id] => 99944
                                            [avatar_url] => https://avatars.githubusercontent.com/u/99944?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/fzaninotto
                                            [html_url] => https://github.com/fzaninotto
                                            [followers_url] => https://api.github.com/users/fzaninotto/followers
                                            [following_url] => https://api.github.com/users/fzaninotto/following{/other_user}
                                            [gists_url] => https://api.github.com/users/fzaninotto/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/fzaninotto/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/fzaninotto/subscriptions
                                            [organizations_url] => https://api.github.com/users/fzaninotto/orgs
                                            [repos_url] => https://api.github.com/users/fzaninotto/repos
                                            [events_url] => https://api.github.com/users/fzaninotto/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/fzaninotto/received_events
                                            [type] => User
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 2579314
                                            [name] => Faker
                                            [full_name] => fzaninotto/Faker
                                            [owner] => Array
                                                (
                                                    [login] => fzaninotto
                                                    [id] => 99944
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/99944?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/fzaninotto
                                                    [html_url] => https://github.com/fzaninotto
                                                    [followers_url] => https://api.github.com/users/fzaninotto/followers
                                                    [following_url] => https://api.github.com/users/fzaninotto/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/fzaninotto/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/fzaninotto/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/fzaninotto/subscriptions
                                                    [organizations_url] => https://api.github.com/users/fzaninotto/orgs
                                                    [repos_url] => https://api.github.com/users/fzaninotto/repos
                                                    [events_url] => https://api.github.com/users/fzaninotto/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/fzaninotto/received_events
                                                    [type] => User
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/fzaninotto/Faker
                                            [description] => Faker is a PHP library that generates fake data for you
                                            [fork] =>
                                            [url] => https://api.github.com/repos/fzaninotto/Faker
                                            [forks_url] => https://api.github.com/repos/fzaninotto/Faker/forks
                                            [keys_url] => https://api.github.com/repos/fzaninotto/Faker/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/fzaninotto/Faker/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/fzaninotto/Faker/teams
                                            [hooks_url] => https://api.github.com/repos/fzaninotto/Faker/hooks
                                            [issue_events_url] => https://api.github.com/repos/fzaninotto/Faker/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/fzaninotto/Faker/events
                                            [assignees_url] => https://api.github.com/repos/fzaninotto/Faker/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/fzaninotto/Faker/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/fzaninotto/Faker/tags
                                            [blobs_url] => https://api.github.com/repos/fzaninotto/Faker/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/fzaninotto/Faker/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/fzaninotto/Faker/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/fzaninotto/Faker/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/fzaninotto/Faker/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/fzaninotto/Faker/languages
                                            [stargazers_url] => https://api.github.com/repos/fzaninotto/Faker/stargazers
                                            [contributors_url] => https://api.github.com/repos/fzaninotto/Faker/contributors
                                            [subscribers_url] => https://api.github.com/repos/fzaninotto/Faker/subscribers
                                            [subscription_url] => https://api.github.com/repos/fzaninotto/Faker/subscription
                                            [commits_url] => https://api.github.com/repos/fzaninotto/Faker/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/fzaninotto/Faker/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/fzaninotto/Faker/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/fzaninotto/Faker/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/fzaninotto/Faker/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/fzaninotto/Faker/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/fzaninotto/Faker/merges
                                            [archive_url] => https://api.github.com/repos/fzaninotto/Faker/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/fzaninotto/Faker/downloads
                                            [issues_url] => https://api.github.com/repos/fzaninotto/Faker/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/fzaninotto/Faker/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/fzaninotto/Faker/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/fzaninotto/Faker/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/fzaninotto/Faker/labels{/name}
                                            [releases_url] => https://api.github.com/repos/fzaninotto/Faker/releases{/id}
                                            [created_at] => 2011-10-14T22:49:02Z
                                            [updated_at] => 2015-01-03T20:56:02Z
                                            [pushed_at] => 2015-01-02T23:07:14Z
                                            [git_url] => git://github.com/fzaninotto/Faker.git
                                            [ssh_url] => git@github.com:fzaninotto/Faker.git
                                            [clone_url] => https://github.com/fzaninotto/Faker.git
                                            [svn_url] => https://github.com/fzaninotto/Faker
                                            [homepage] =>
                                            [size] => 6597
                                            [stargazers_count] => 4939
                                            [watchers_count] => 4939
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] =>
                                            [has_pages] =>
                                            [forks_count] => 697
                                            [mirror_url] =>
                                            [open_issues_count] => 45
                                            [forks] => 697
                                            [open_issues] => 45
                                            [watchers] => 4939
                                            [default_branch] => master
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/fzaninotto/Faker/pulls/491
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/fzaninotto/Faker/pull/491
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/fzaninotto/Faker/issues/491
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/fzaninotto/Faker/issues/491/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/fzaninotto/Faker/pulls/491/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/fzaninotto/Faker/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/fzaninotto/Faker/pulls/491/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/fzaninotto/Faker/statuses/bdf1848e638e2431b57646f54a984ff8f8893fe5
                                        )

                                )

                            [merged] =>
                            [mergeable] =>
                            [mergeable_state] => unknown
                            [merged_by] =>
                            [comments] => 0
                            [review_comments] => 0
                            [commits] => 1
                            [additions] => 2
                            [deletions] => 2
                            [changed_files] => 1
                        )

                )

            [public] => 1
            [created_at] => 2015-01-04T00:19:21Z
        )

    [69] => Array
        (
            [id] => 2491777351
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 28758243
                    [name] => ikwattro/Faker
                    [url] => https://api.github.com/repos/ikwattro/Faker
                )

            [payload] => Array
                (
                    [ref] => unique-perf
                    [ref_type] => branch
                    [master_branch] => master
                    [description] => Faker is a PHP library that generates fake data for you
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2015-01-04T00:14:38Z
        )

    [70] => Array
        (
            [id] => 2491773689
            [type] => ForkEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 2579314
                    [name] => fzaninotto/Faker
                    [url] => https://api.github.com/repos/fzaninotto/Faker
                )

            [payload] => Array
                (
                    [forkee] => Array
                        (
                            [id] => 28758243
                            [name] => Faker
                            [full_name] => ikwattro/Faker
                            [owner] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [private] =>
                            [html_url] => https://github.com/ikwattro/Faker
                            [description] => Faker is a PHP library that generates fake data for you
                            [fork] => 1
                            [url] => https://api.github.com/repos/ikwattro/Faker
                            [forks_url] => https://api.github.com/repos/ikwattro/Faker/forks
                            [keys_url] => https://api.github.com/repos/ikwattro/Faker/keys{/key_id}
                            [collaborators_url] => https://api.github.com/repos/ikwattro/Faker/collaborators{/collaborator}
                            [teams_url] => https://api.github.com/repos/ikwattro/Faker/teams
                            [hooks_url] => https://api.github.com/repos/ikwattro/Faker/hooks
                            [issue_events_url] => https://api.github.com/repos/ikwattro/Faker/issues/events{/number}
                            [events_url] => https://api.github.com/repos/ikwattro/Faker/events
                            [assignees_url] => https://api.github.com/repos/ikwattro/Faker/assignees{/user}
                            [branches_url] => https://api.github.com/repos/ikwattro/Faker/branches{/branch}
                            [tags_url] => https://api.github.com/repos/ikwattro/Faker/tags
                            [blobs_url] => https://api.github.com/repos/ikwattro/Faker/git/blobs{/sha}
                            [git_tags_url] => https://api.github.com/repos/ikwattro/Faker/git/tags{/sha}
                            [git_refs_url] => https://api.github.com/repos/ikwattro/Faker/git/refs{/sha}
                            [trees_url] => https://api.github.com/repos/ikwattro/Faker/git/trees{/sha}
                            [statuses_url] => https://api.github.com/repos/ikwattro/Faker/statuses/{sha}
                            [languages_url] => https://api.github.com/repos/ikwattro/Faker/languages
                            [stargazers_url] => https://api.github.com/repos/ikwattro/Faker/stargazers
                            [contributors_url] => https://api.github.com/repos/ikwattro/Faker/contributors
                            [subscribers_url] => https://api.github.com/repos/ikwattro/Faker/subscribers
                            [subscription_url] => https://api.github.com/repos/ikwattro/Faker/subscription
                            [commits_url] => https://api.github.com/repos/ikwattro/Faker/commits{/sha}
                            [git_commits_url] => https://api.github.com/repos/ikwattro/Faker/git/commits{/sha}
                            [comments_url] => https://api.github.com/repos/ikwattro/Faker/comments{/number}
                            [issue_comment_url] => https://api.github.com/repos/ikwattro/Faker/issues/comments/{number}
                            [contents_url] => https://api.github.com/repos/ikwattro/Faker/contents/{+path}
                            [compare_url] => https://api.github.com/repos/ikwattro/Faker/compare/{base}...{head}
                            [merges_url] => https://api.github.com/repos/ikwattro/Faker/merges
                            [archive_url] => https://api.github.com/repos/ikwattro/Faker/{archive_format}{/ref}
                            [downloads_url] => https://api.github.com/repos/ikwattro/Faker/downloads
                            [issues_url] => https://api.github.com/repos/ikwattro/Faker/issues{/number}
                            [pulls_url] => https://api.github.com/repos/ikwattro/Faker/pulls{/number}
                            [milestones_url] => https://api.github.com/repos/ikwattro/Faker/milestones{/number}
                            [notifications_url] => https://api.github.com/repos/ikwattro/Faker/notifications{?since,all,participating}
                            [labels_url] => https://api.github.com/repos/ikwattro/Faker/labels{/name}
                            [releases_url] => https://api.github.com/repos/ikwattro/Faker/releases{/id}
                            [created_at] => 2015-01-04T00:06:38Z
                            [updated_at] => 2015-01-03T20:56:02Z
                            [pushed_at] => 2015-01-02T23:07:14Z
                            [git_url] => git://github.com/ikwattro/Faker.git
                            [ssh_url] => git@github.com:ikwattro/Faker.git
                            [clone_url] => https://github.com/ikwattro/Faker.git
                            [svn_url] => https://github.com/ikwattro/Faker
                            [homepage] =>
                            [size] => 6597
                            [stargazers_count] => 0
                            [watchers_count] => 0
                            [language] =>
                            [has_issues] =>
                            [has_downloads] => 1
                            [has_wiki] =>
                            [has_pages] =>
                            [forks_count] => 0
                            [mirror_url] =>
                            [open_issues_count] => 0
                            [forks] => 0
                            [open_issues] => 0
                            [watchers] => 0
                            [default_branch] => master
                            [public] => 1
                        )

                )

            [public] => 1
            [created_at] => 2015-01-04T00:06:38Z
        )

    [71] => Array
        (
            [id] => 2491135658
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 537485694
                    [size] => 3
                    [distinct_size] => 3
                    [ref] => refs/heads/refactoring
                    [head] => 57a5bdba4175ebaf42976a795a71cd095c147727
                    [before] => 7f3445a38664d985846b1684b4dc319a399d23fc
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 00cfbd29e40f93abfae17e4f1fedf1280d6366f9
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => prepared relationship definition for user defined target nodes percentage
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/00cfbd29e40f93abfae17e4f1fedf1280d6366f9
                                )

                            [1] => Array
                                (
                                    [sha] => 42b4feda3738d5492fc08e9d26626dd2c230b5e8
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added possibility to define unique values
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/42b4feda3738d5492fc08e9d26626dd2c230b5e8
                                )

                            [2] => Array
                                (
                                    [sha] => 57a5bdba4175ebaf42976a795a71cd095c147727
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added bench
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/57a5bdba4175ebaf42976a795a71cd095c147727
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-03T01:39:12Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [72] => Array
        (
            [id] => 2491060451
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 537455172
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/refactoring
                    [head] => 7f3445a38664d985846b1684b4dc319a399d23fc
                    [before] => d99f3b8af1771b069632d42dd2a2bc7de31d5ee5
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 7f3445a38664d985846b1684b4dc319a399d23fc
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => 1to1 relationship processing refactored
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/7f3445a38664d985846b1684b4dc319a399d23fc
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-02T23:54:15Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [73] => Array
        (
            [id] => 2491025542
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 537440742
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/refactoring
                    [head] => d99f3b8af1771b069632d42dd2a2bc7de31d5ee5
                    [before] => 8d76713bac2aef0f113197f0e2c5c8e188ffae5b
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => d99f3b8af1771b069632d42dd2a2bc7de31d5ee5
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => new GraphProcessor
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/d99f3b8af1771b069632d42dd2a2bc7de31d5ee5
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-02T23:16:35Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [74] => Array
        (
            [id] => 2490758198
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 7560719
                    [name] => jeremykendall/php-domain-parser
                    [url] => https://api.github.com/repos/jeremykendall/php-domain-parser
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2015-01-02T19:31:06Z
        )

    [75] => Array
        (
            [id] => 2490699004
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 537310778
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/refactoring
                    [head] => 8d76713bac2aef0f113197f0e2c5c8e188ffae5b
                    [before] => f7c1f208c7cc526ee8a0bddba6b37ad6275c2735
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 8d76713bac2aef0f113197f0e2c5c8e188ffae5b
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => move faker to its own service and inject it in the property processor
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/8d76713bac2aef0f113197f0e2c5c8e188ffae5b
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-02T18:43:20Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [76] => Array
        (
            [id] => 2490540438
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 537247693
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/refactoring
                    [head] => f7c1f208c7cc526ee8a0bddba6b37ad6275c2735
                    [before] => 19e6fe16e0153961aa677bea689ba219d0178d9f
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => f7c1f208c7cc526ee8a0bddba6b37ad6275c2735
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => minor refactoring property processor
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/f7c1f208c7cc526ee8a0bddba6b37ad6275c2735
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-02T16:32:47Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [77] => Array
        (
            [id] => 2490493774
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 537229096
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/refactoring
                    [head] => 19e6fe16e0153961aa677bea689ba219d0178d9f
                    [before] => 8e5e9de49e7020025162e2f472bce2c0772f0825
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 19e6fe16e0153961aa677bea689ba219d0178d9f
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => VertEdge Processor minor refactoring
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/19e6fe16e0153961aa677bea689ba219d0178d9f
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-02T15:55:00Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [78] => Array
        (
            [id] => 2490443448
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 537209084
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/refactoring
                    [head] => 8e5e9de49e7020025162e2f472bce2c0772f0825
                    [before] => 2b25af67e43f992f686447022f080607ce42fe49
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 8e5e9de49e7020025162e2f472bce2c0772f0825
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => GraphSchemaBuilder created
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/8e5e9de49e7020025162e2f472bce2c0772f0825
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-02T15:12:16Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [79] => Array
        (
            [id] => 2489961777
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 537001728
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/refactoring
                    [head] => 2b25af67e43f992f686447022f080607ce42fe49
                    [before] => 0c693909ca02c4715a5e63143ce951902ae6477f
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 2b25af67e43f992f686447022f080607ce42fe49
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed code styling
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/2b25af67e43f992f686447022f080607ce42fe49
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-02T02:12:41Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [80] => Array
        (
            [id] => 2489959599
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 537000763
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/refactoring
                    [head] => 0c693909ca02c4715a5e63143ce951902ae6477f
                    [before] => 5ba9ae1342763c94191d9be7be4f7c9522e16ecc
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 0c693909ca02c4715a5e63143ce951902ae6477f
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => schema definition oo class
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/0c693909ca02c4715a5e63143ce951902ae6477f
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-02T02:07:45Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [81] => Array
        (
            [id] => 2489945004
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 536994329
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/refactoring
                    [head] => 5ba9ae1342763c94191d9be7be4f7c9522e16ecc
                    [before] => a8e33f6054fc49f25dad9633eb4603e3097e9cd3
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 5ba9ae1342763c94191d9be7be4f7c9522e16ecc
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => oo way for relationship and relationship property definitions
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/5ba9ae1342763c94191d9be7be4f7c9522e16ecc
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-02T01:31:40Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [82] => Array
        (
            [id] => 2489930990
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 536988036
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/refactoring
                    [head] => a8e33f6054fc49f25dad9633eb4603e3097e9cd3
                    [before] => f1311eab8ab5fe395535150cf59f4e86fa132deb
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => a8e33f6054fc49f25dad9633eb4603e3097e9cd3
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => oo implementation of node and properties definition
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/a8e33f6054fc49f25dad9633eb4603e3097e9cd3
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-02T00:56:17Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [83] => Array
        (
            [id] => 2489729799
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 536899660
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/refactoring
                    [head] => f1311eab8ab5fe395535150cf59f4e86fa132deb
                    [before] => fe5eb1164361280226f603a4115ce8fcc806f273
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => f1311eab8ab5fe395535150cf59f4e86fa132deb
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => refactored Neogen entry point
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/f1311eab8ab5fe395535150cf59f4e86fa132deb
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-01T17:48:47Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [84] => Array
        (
            [id] => 2489715951
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 536893643
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/refactoring
                    [head] => fe5eb1164361280226f603a4115ce8fcc806f273
                    [before] => c907bced51c8f3d91c5851bc4bf83c3e44dbe44d
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => fe5eb1164361280226f603a4115ce8fcc806f273
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => sanitized and interfaced the YAML File Parser
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/fe5eb1164361280226f603a4115ce8fcc806f273
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-01T17:18:44Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [85] => Array
        (
            [id] => 2489670975
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 536873031
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/refactoring
                    [head] => c907bced51c8f3d91c5851bc4bf83c3e44dbe44d
                    [before] => 8a15b96a2bb678aeff2598b2991dea4568af65ab
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => c907bced51c8f3d91c5851bc4bf83c3e44dbe44d
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => renamed YamlFile to YamlFileParser
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/c907bced51c8f3d91c5851bc4bf83c3e44dbe44d
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-01T15:43:03Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [86] => Array
        (
            [id] => 2489669765
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [action] => opened
                    [number] => 12
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/12
                            [id] => 26744055
                            [html_url] => https://github.com/neoxygen/neo4j-neogen/pull/12
                            [diff_url] => https://github.com/neoxygen/neo4j-neogen/pull/12.diff
                            [patch_url] => https://github.com/neoxygen/neo4j-neogen/pull/12.patch
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/12
                            [number] => 12
                            [state] => open
                            [locked] =>
                            [title] => Refactoring for first stable release
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] =>
                            [created_at] => 2015-01-01T15:40:33Z
                            [updated_at] => 2015-01-01T15:40:33Z
                            [closed_at] =>
                            [merged_at] =>
                            [merge_commit_sha] =>
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/12/commits
                            [review_comments_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/12/comments
                            [review_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/12/comments
                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/statuses/8a15b96a2bb678aeff2598b2991dea4568af65ab
                            [head] => Array
                                (
                                    [label] => neoxygen:refactoring
                                    [ref] => refactoring
                                    [sha] => 8a15b96a2bb678aeff2598b2991dea4568af65ab
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 24678257
                                            [name] => neo4j-neogen
                                            [full_name] => neoxygen/neo4j-neogen
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-neogen
                                            [description] => Easy generation of dummy Neo4j graphs with PHP
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/releases{/id}
                                            [created_at] => 2014-10-01T12:53:28Z
                                            [updated_at] => 2014-12-31T23:26:21Z
                                            [pushed_at] => 2015-01-01T15:39:58Z
                                            [git_url] => git://github.com/neoxygen/neo4j-neogen.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-neogen.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-neogen.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-neogen
                                            [homepage] =>
                                            [size] => 703
                                            [stargazers_count] => 10
                                            [watchers_count] => 10
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 2
                                            [mirror_url] =>
                                            [open_issues_count] => 2
                                            [forks] => 2
                                            [open_issues] => 2
                                            [watchers] => 10
                                            [default_branch] => master
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => neoxygen:master
                                    [ref] => master
                                    [sha] => 6d10dc8e05618076b68e3a95c4194fae0f2f8f86
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 24678257
                                            [name] => neo4j-neogen
                                            [full_name] => neoxygen/neo4j-neogen
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-neogen
                                            [description] => Easy generation of dummy Neo4j graphs with PHP
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/releases{/id}
                                            [created_at] => 2014-10-01T12:53:28Z
                                            [updated_at] => 2014-12-31T23:26:21Z
                                            [pushed_at] => 2015-01-01T15:39:58Z
                                            [git_url] => git://github.com/neoxygen/neo4j-neogen.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-neogen.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-neogen.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-neogen
                                            [homepage] =>
                                            [size] => 703
                                            [stargazers_count] => 10
                                            [watchers_count] => 10
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 2
                                            [mirror_url] =>
                                            [open_issues_count] => 2
                                            [forks] => 2
                                            [open_issues] => 2
                                            [watchers] => 10
                                            [default_branch] => master
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/12
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neoxygen/neo4j-neogen/pull/12
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/12
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/12/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/12/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/12/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/statuses/8a15b96a2bb678aeff2598b2991dea4568af65ab
                                        )

                                )

                            [merged] =>
                            [mergeable] =>
                            [mergeable_state] => unknown
                            [merged_by] =>
                            [comments] => 0
                            [review_comments] => 0
                            [commits] => 2
                            [additions] => 362
                            [deletions] => 3
                            [changed_files] => 14
                        )

                )

            [public] => 1
            [created_at] => 2015-01-01T15:40:33Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [87] => Array
        (
            [id] => 2489669455
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 536872326
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/refactoring
                    [head] => 8a15b96a2bb678aeff2598b2991dea4568af65ab
                    [before] => a90452717087eef2f99876afcf8763df6c1fbdf6
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 8a15b96a2bb678aeff2598b2991dea4568af65ab
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added a parser manager service for registering available schema definition parsers
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/8a15b96a2bb678aeff2598b2991dea4568af65ab
                                )

                        )

                )

            [public] => 1
            [created_at] => 2015-01-01T15:39:58Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [88] => Array
        (
            [id] => 2489391563
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [ref] => refactoring
                    [ref_type] => branch
                    [master_branch] => master
                    [description] => Easy generation of dummy Neo4j graphs with PHP
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2015-01-01T00:49:34Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [89] => Array
        (
            [id] => 2489349148
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 536732456
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 6d10dc8e05618076b68e3a95c4194fae0f2f8f86
                    [before] => fa74a220df9f263d8a0c0b2654a691b7ec496aa0
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 6d10dc8e05618076b68e3a95c4194fae0f2f8f86
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => updated deps
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/6d10dc8e05618076b68e3a95c4194fae0f2f8f86
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-12-31T23:26:20Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [90] => Array
        (
            [id] => 2489343211
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 536729992
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => fa74a220df9f263d8a0c0b2654a691b7ec496aa0
                    [before] => 6974f5aa5979560a1d36eb12313e7ac3a3541c75
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => fa74a220df9f263d8a0c0b2654a691b7ec496aa0
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added seed possibility
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/fa74a220df9f263d8a0c0b2654a691b7ec496aa0
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-12-31T23:15:31Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [91] => Array
        (
            [id] => 2489332625
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 3948501
                    [name] => KnpLabs/php-github-api
                    [url] => https://api.github.com/repos/KnpLabs/php-github-api
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-12-31T22:58:55Z
            [org] => Array
                (
                    [id] => 202732
                    [login] => KnpLabs
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/KnpLabs
                    [avatar_url] => https://avatars.githubusercontent.com/u/202732?
                )

        )

    [92] => Array
        (
            [id] => 2489086700
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 26802612
                    [name] => webmozart/json
                    [url] => https://api.github.com/repos/webmozart/json
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-12-31T18:08:16Z
        )

    [93] => Array
        (
            [id] => 2488187409
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 27793122
                    [name] => awslabs/aws-sdk-php-resources
                    [url] => https://api.github.com/repos/awslabs/aws-sdk-php-resources
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-12-30T22:51:47Z
            [org] => Array
                (
                    [id] => 3299148
                    [login] => awslabs
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/awslabs
                    [avatar_url] => https://avatars.githubusercontent.com/u/3299148?
                )

        )

    [94] => Array
        (
            [id] => 2487292949
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 535866144
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => a7e694e10a2c9d645900140b1069d8679d084aa0
                    [before] => e25c223b91510c94ff78ea4c9827e3e407e4e38c
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => a7e694e10a2c9d645900140b1069d8679d084aa0
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => doc for default timeout
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/a7e694e10a2c9d645900140b1069d8679d084aa0
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-12-30T11:47:02Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [95] => Array
        (
            [id] => 2487289929
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [ref] => 2.0.7
                    [ref_type] => tag
                    [master_branch] => master
                    [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-12-30T11:43:39Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [96] => Array
        (
            [id] => 2487289758
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 535864684
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => e25c223b91510c94ff78ea4c9827e3e407e4e38c
                    [before] => 5e50a5e1c0ce179935bc198a2bf8dceb08c79275
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => e25c223b91510c94ff78ea4c9827e3e407e4e38c
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added configurable default timeout for http requests
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/e25c223b91510c94ff78ea4c9827e3e407e4e38c
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-12-30T11:43:27Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [97] => Array
        (
            [id] => 2483952008
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 12962729
                    [name] => angular-ui/ui-select
                    [url] => https://api.github.com/repos/angular-ui/ui-select
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-12-26T19:35:02Z
            [org] => Array
                (
                    [id] => 1530011
                    [login] => angular-ui
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/angular-ui
                    [avatar_url] => https://avatars.githubusercontent.com/u/1530011?
                )

        )

    [98] => Array
        (
            [id] => 2481328145
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [ref] => 2.0.6
                    [ref_type] => tag
                    [master_branch] => master
                    [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-12-23T23:03:52Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [99] => Array
        (
            [id] => 2481327903
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 533277399
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 5e50a5e1c0ce179935bc198a2bf8dceb08c79275
                    [before] => 553617b25e18e01ac7fe30e96f17b2970227f322
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 5e50a5e1c0ce179935bc198a2bf8dceb08c79275
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added possibility to get collection when only one elt is present in get method
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/5e50a5e1c0ce179935bc198a2bf8dceb08c79275
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-12-23T23:03:39Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [100] => Array
        (
            [id] => 2477711494
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 3601728
                    [name] => hwi/HWIOAuthBundle
                    [url] => https://api.github.com/repos/hwi/HWIOAuthBundle
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/hwi/HWIOAuthBundle/issues/651
                            [labels_url] => https://api.github.com/repos/hwi/HWIOAuthBundle/issues/651/labels{/name}
                            [comments_url] => https://api.github.com/repos/hwi/HWIOAuthBundle/issues/651/comments
                            [events_url] => https://api.github.com/repos/hwi/HWIOAuthBundle/issues/651/events
                            [html_url] => https://github.com/hwi/HWIOAuthBundle/issues/651
                            [id] => 42991782
                            [number] => 651
                            [title] => facebook appends "#_=_"
                            [user] => Array
                                (
                                    [login] => snjegov
                                    [id] => 6431614
                                    [avatar_url] => https://avatars.githubusercontent.com/u/6431614?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/snjegov
                                    [html_url] => https://github.com/snjegov
                                    [followers_url] => https://api.github.com/users/snjegov/followers
                                    [following_url] => https://api.github.com/users/snjegov/following{/other_user}
                                    [gists_url] => https://api.github.com/users/snjegov/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/snjegov/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/snjegov/subscriptions
                                    [organizations_url] => https://api.github.com/users/snjegov/orgs
                                    [repos_url] => https://api.github.com/users/snjegov/repos
                                    [events_url] => https://api.github.com/users/snjegov/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/snjegov/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                    [0] => Array
                                        (
                                            [url] => https://api.github.com/repos/hwi/HWIOAuthBundle/labels/Support+request
                                            [name] => Support request
                                            [color] => 0052cc
                                        )

                                )

                            [state] => open
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 6
                            [created_at] => 2014-09-17T10:12:48Z
                            [updated_at] => 2014-12-21T23:34:27Z
                            [closed_at] =>
                            [body] => Hi everyone

I googled about facebook appending the "#_=_" hash by design as a security issue fix if redirect_uri is not fixed. In my fb app i have set site URL to http://localhost and i left valid oauth redirect link empty because i get an error.

How can I fix this appending? I have integrated hwiouth with fos user bundle bridge.
                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/hwi/HWIOAuthBundle/issues/comments/67789968
                            [html_url] => https://github.com/hwi/HWIOAuthBundle/issues/651#issuecomment-67789968
                            [issue_url] => https://api.github.com/repos/hwi/HWIOAuthBundle/issues/651
                            [id] => 67789968
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2014-12-21T23:34:27Z
                            [updated_at] => 2014-12-21T23:34:27Z
                            [body] => Same issue, FB appendings the #_=_ . I'm however well logged in and using other resource owners without any problem.
                        )

                )

            [public] => 1
            [created_at] => 2014-12-21T23:34:27Z
            [org] => Array
                (
                    [id] => 1150427
                    [login] => hwi
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/hwi
                    [avatar_url] => https://avatars.githubusercontent.com/u/1150427?
                )

        )

    [101] => Array
        (
            [id] => 2477607891
            [type] => IssuesEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [action] => closed
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/9
                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/9/labels{/name}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/9/comments
                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/9/events
                            [html_url] => https://github.com/neoxygen/neo4j-neogen/issues/9
                            [id] => 48219272
                            [number] => 9
                            [title] => Yaml definition does not allow proper tree structure definition
                            [user] => Array
                                (
                                    [login] => Leward
                                    [id] => 1108235
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1108235?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/Leward
                                    [html_url] => https://github.com/Leward
                                    [followers_url] => https://api.github.com/users/Leward/followers
                                    [following_url] => https://api.github.com/users/Leward/following{/other_user}
                                    [gists_url] => https://api.github.com/users/Leward/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/Leward/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/Leward/subscriptions
                                    [organizations_url] => https://api.github.com/users/Leward/orgs
                                    [repos_url] => https://api.github.com/users/Leward/repos
                                    [events_url] => https://api.github.com/users/Leward/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/Leward/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => closed
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 2
                            [created_at] => 2014-11-10T00:09:37Z
                            [updated_at] => 2014-12-21T20:43:06Z
                            [closed_at] => 2014-12-21T20:43:06Z
                            [body] => It is quite easy with the Cypher notation to define tree structure thanks to identifiers:

    (user:User {email:email} *5)
    (user)-[:filespace *1..1]->(fs:FileSpace *5)
    (fs)-[:contains *1..n]->(file:File {name: randomNumber} *10)
    (fs)-[:contains *1..n]->(folder:Folder {name: randomNumber} *5)
    (folder)-[:contains *1..n]->(file2:File {name: randomNumber} *10)

However with Yaml definition it is something else. If we take an example of something that currently as expected:

    connection:
      scheme: http
      host: localhost
      port: 7474

    nodes:
      users:
        label: User
        count: 5
        properties:
          email: email
      fileSpaces:
          label: FileSpace
          count: 5
      files:
          label: File
          count: 10

    relationships:
      fileSpaceRels:
        start: User
        end: FileSpace
        type: FILESPACE
        mode: 1..1
      fileSpaceContainsFiles:
        start: FileSpace
        end: File
        type: CONTAINS
        mode: 1..n

We see that relationships start and end nodes are described based on the label rather than on the identifier like for the Cypher Query. Adding folders in the later example should be quite easy. However, introducing files inside folder is another story as the relationship description will match files at the root and files that should be in folders at the same time.

It is somehow possible to have a tree-like structure by cheating using new intermediate labels for nested files. But it's really messy has we cannot make clean Cypher on that tree afterward:

    connection:
      scheme: http
      host: localhost
      port: 7474

    nodes:
      users:
        label: User
        count: 5
        properties:
          email: email
      fileSpaces:
        label: FileSpace
        count: 5
      files:
        label: File
        count: 10
      folders:
        label: Folder
        count: 5
      firstLvlFiles:
        label: FirstLvlFile
        count: 15

    relationships:
      fileSpaceRels:
        start: User
        end: FileSpace
        type: FILESPACE
        mode: 1..1
      fileSpaceContainsFiles:
        start: FileSpace
        end: File
        type: CONTAINS
        mode: 1..n
      fileSpaceContainsFolders:
        start: FileSpace
        end: Folder
        type: CONTAINS
        mode: 1..n
      foldersContainsFirstLvlFiles:
        start: Folder
        end: FirstLvlFile
        type: CONTAINS
        mode: 1..n
                        )

                )

            [public] => 1
            [created_at] => 2014-12-21T20:43:06Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [102] => Array
        (
            [id] => 2477607773
            [type] => IssuesEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [action] => closed
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/5
                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/5/labels{/name}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/5/comments
                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/5/events
                            [html_url] => https://github.com/neoxygen/neo4j-neogen/issues/5
                            [id] => 45829191
                            [number] => 5
                            [title] => allowing inversed patterns
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => closed
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 0
                            [created_at] => 2014-10-15T04:43:07Z
                            [updated_at] => 2014-12-21T20:42:53Z
                            [closed_at] => 2014-12-21T20:42:53Z
                            [body] => The following will output the desired star graph

```
(root:Root *1)-[:LINK *1..n]->(l:Link *5)
```

Btw doing this should ouptut the same, but currently it is not the case

```
(root:Root *1)<-[:LINK *1..n]-(l:Link *5)
```
                        )

                )

            [public] => 1
            [created_at] => 2014-12-21T20:42:53Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [103] => Array
        (
            [id] => 2476994192
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [ref] => 2.0.5
                    [ref_type] => tag
                    [master_branch] => master
                    [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-12-20T22:15:45Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [104] => Array
        (
            [id] => 2476994064
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 531410233
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 553617b25e18e01ac7fe30e96f17b2970227f322
                    [before] => 008d36276d6af59b75341f1cf704e74510382ac7
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 553617b25e18e01ac7fe30e96f17b2970227f322
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => logger and ed services are now under neoxygen namespace, added a compiler pass for BC and ease inside fmwks
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/553617b25e18e01ac7fe30e96f17b2970227f322
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-12-20T22:15:30Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [105] => Array
        (
            [id] => 2476968243
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [action] => closed
                    [number] => 8
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/8
                            [id] => 24121317
                            [html_url] => https://github.com/neoxygen/neo4j-neogen/pull/8
                            [diff_url] => https://github.com/neoxygen/neo4j-neogen/pull/8.diff
                            [patch_url] => https://github.com/neoxygen/neo4j-neogen/pull/8.patch
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/8
                            [number] => 8
                            [state] => closed
                            [locked] =>
                            [title] => Align development branch with changes made in master
                            [user] => Array
                                (
                                    [login] => Leward
                                    [id] => 1108235
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1108235?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/Leward
                                    [html_url] => https://github.com/Leward
                                    [followers_url] => https://api.github.com/users/Leward/followers
                                    [following_url] => https://api.github.com/users/Leward/following{/other_user}
                                    [gists_url] => https://api.github.com/users/Leward/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/Leward/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/Leward/subscriptions
                                    [organizations_url] => https://api.github.com/users/Leward/orgs
                                    [repos_url] => https://api.github.com/users/Leward/repos
                                    [events_url] => https://api.github.com/users/Leward/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/Leward/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] =>
                            [created_at] => 2014-11-09T23:45:08Z
                            [updated_at] => 2014-12-20T21:27:52Z
                            [closed_at] => 2014-12-20T21:27:52Z
                            [merged_at] =>
                            [merge_commit_sha] => a83ac58d867fb186107cc39f32412f168a0c445d
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/8/commits
                            [review_comments_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/8/comments
                            [review_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/8/comments
                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/statuses/5af7ed59f1eb8ff6ebf76c436ccd6568ddeb9c6a
                            [head] => Array
                                (
                                    [label] => Leward:master
                                    [ref] => master
                                    [sha] => 5af7ed59f1eb8ff6ebf76c436ccd6568ddeb9c6a
                                    [user] => Array
                                        (
                                            [login] => Leward
                                            [id] => 1108235
                                            [avatar_url] => https://avatars.githubusercontent.com/u/1108235?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/Leward
                                            [html_url] => https://github.com/Leward
                                            [followers_url] => https://api.github.com/users/Leward/followers
                                            [following_url] => https://api.github.com/users/Leward/following{/other_user}
                                            [gists_url] => https://api.github.com/users/Leward/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/Leward/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/Leward/subscriptions
                                            [organizations_url] => https://api.github.com/users/Leward/orgs
                                            [repos_url] => https://api.github.com/users/Leward/repos
                                            [events_url] => https://api.github.com/users/Leward/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/Leward/received_events
                                            [type] => User
                                            [site_admin] =>
                                        )

                                    [repo] =>
                                )

                            [base] => Array
                                (
                                    [label] => neoxygen:development
                                    [ref] => development
                                    [sha] => 6078c1abdd87b670047377272cdbdf293fbea16a
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 24678257
                                            [name] => neo4j-neogen
                                            [full_name] => neoxygen/neo4j-neogen
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-neogen
                                            [description] => Easy generation of dummy Neo4j graphs with PHP
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/releases{/id}
                                            [created_at] => 2014-10-01T12:53:28Z
                                            [updated_at] => 2014-12-20T20:00:40Z
                                            [pushed_at] => 2014-12-20T20:01:16Z
                                            [git_url] => git://github.com/neoxygen/neo4j-neogen.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-neogen.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-neogen.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-neogen
                                            [homepage] =>
                                            [size] => 698
                                            [stargazers_count] => 10
                                            [watchers_count] => 10
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 2
                                            [mirror_url] =>
                                            [open_issues_count] => 3
                                            [forks] => 2
                                            [open_issues] => 3
                                            [watchers] => 10
                                            [default_branch] => master
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/8
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neoxygen/neo4j-neogen/pull/8
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/8
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/8/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/8/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/8/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/statuses/5af7ed59f1eb8ff6ebf76c436ccd6568ddeb9c6a
                                        )

                                )

                            [merged] =>
                            [mergeable] => 1
                            [mergeable_state] => unstable
                            [merged_by] =>
                            [comments] => 0
                            [review_comments] => 0
                            [commits] => 14
                            [additions] => 213
                            [deletions] => 2024
                            [changed_files] => 33
                        )

                )

            [public] => 1
            [created_at] => 2014-12-20T21:27:53Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [106] => Array
        (
            [id] => 2476921567
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [ref] => 0.5.6
                    [ref_type] => tag
                    [master_branch] => master
                    [description] => Easy generation of dummy Neo4j graphs with PHP
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-12-20T20:01:16Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [107] => Array
        (
            [id] => 2476921180
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 531376022
                    [size] => 1
                    [distinct_size] => 0
                    [ref] => refs/heads/master
                    [head] => 6974f5aa5979560a1d36eb12313e7ac3a3541c75
                    [before] => d1c4dd31bb412b07db87189336b206f77afe99f1
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 6974f5aa5979560a1d36eb12313e7ac3a3541c75
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added the possibility to import the graph directly in neo4j with the generate-cypher command
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/6974f5aa5979560a1d36eb12313e7ac3a3541c75
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-12-20T20:00:40Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [108] => Array
        (
            [id] => 2476920843
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [ref] => cypher-import
                    [ref_type] => branch
                    [master_branch] => master
                    [description] => Easy generation of dummy Neo4j graphs with PHP
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-12-20T20:00:11Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [109] => Array
        (
            [id] => 2476597157
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24217774
                    [name] => ikwattro/neo4j-neoclient
                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 531231438
                    [size] => 145
                    [distinct_size] => 145
                    [ref] => refs/heads/master
                    [head] => 008d36276d6af59b75341f1cf704e74510382ac7
                    [before] => 6ecb5c3cb606cff6e4a947ab20209389b3e38a64
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => c62ec7e9670b37faaebc09144438dc4681fae207
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => badge + dev-master redirect
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient/commits/c62ec7e9670b37faaebc09144438dc4681fae207
                                )

                            [1] => Array
                                (
                                    [sha] => cf0ef6ac62de69af4b8b41131e83cab77a051a08
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fallback connection feature
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient/commits/cf0ef6ac62de69af4b8b41131e83cab77a051a08
                                )

                            [2] => Array
                                (
                                    [sha] => 30214043d4c51fe75f82a1a057e8b35ec789781f
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added tests for fallback mode
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient/commits/30214043d4c51fe75f82a1a057e8b35ec789781f
                                )

                            [3] => Array
                                (
                                    [sha] => 10808cd9d0a523c720f670c86fe9ec8a41a6fb93
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added convenience methods for working with poc replication mode
- sendWriteQuery
- sendReadQuery
- pushWriteQueryToTransaction
- pushReadQueryToTransaction
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient/commits/10808cd9d0a523c720f670c86fe9ec8a41a6fb93
                                )

                            [4] => Array
                                (
                                    [sha] => 345fef057eab57244ec6fbfb5c974b68406df558
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => cache enabled for production settings
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient/commits/345fef057eab57244ec6fbfb5c974b68406df558
                                )

                            [5] => Array
                                (
                                    [sha] => 044dfc865cd9c189dffef4c96dd1799929b98615
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added check for the cache path ending delimiter
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient/commits/044dfc865cd9c189dffef4c96dd1799929b98615
                                )

                            [6] => Array
                                (
                                    [sha] => 63f2c2fa47087065d667463c7361bb69da1e4421
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => check for bad cache paths + cs fix
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient/commits/63f2c2fa47087065d667463c7361bb69da1e4421
                                )

                            [7] => Array
                                (
                                    [sha] => 8f620089747f6225852a5bd1dafaf6b1f4d4fb2f
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => sli fixes - remains 1
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient/commits/8f620089747f6225852a5bd1dafaf6b1f4d4fb2f
                                )

                            [8] => Array
                                (
                                    [sha] => 634cffa0335183e75d87ac4af3ae3b82a31180d1
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed failing test due to changed default config
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient/commits/634cffa0335183e75d87ac4af3ae3b82a31180d1
                                )

                            [9] => Array
                                (
                                    [sha] => b32c66d579a59911b8bca700623e27d54c557849
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => improved doc
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient/commits/b32c66d579a59911b8bca700623e27d54c557849
                                )

                            [10] => Array
                                (
                                    [sha] => c3009594eca1bf071b14e34cbe78a2b6089514e1
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed doc style
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient/commits/c3009594eca1bf071b14e34cbe78a2b6089514e1
                                )

                            [11] => Array
                                (
                                    [sha] => 1c89d0ffb42345ac96715132bfca7da2aa4dd6d3
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed markdown
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient/commits/1c89d0ffb42345ac96715132bfca7da2aa4dd6d3
                                )

                            [12] => Array
                                (
                                    [sha] => 744a2a9b18aeeabd08ad99f14bed88b8c0a98a65
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => test case db settings
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient/commits/744a2a9b18aeeabd08ad99f14bed88b8c0a98a65
                                )

                            [13] => Array
                                (
                                    [sha] => cb734db1b1a175d715decc4ebcb3d504222148d7
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed setLogger not returning object
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient/commits/cb734db1b1a175d715decc4ebcb3d504222148d7
                                )

                            [14] => Array
                                (
                                    [sha] => 423662710281601b5b5a35f49bac1d74f84552a3
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => composer locked
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient/commits/423662710281601b5b5a35f49bac1d74f84552a3
                                )

                            [15] => Array
                                (
                                    [sha] => c7e5db01bae152087a98b6b1dc7f9bf428028e77
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => commit tx missing command
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient/commits/c7e5db01bae152087a98b6b1dc7f9bf428028e77
                                )

                            [16] => Array
                                (
                                    [sha] => cc55f3cf482919c2e2bb65a196ae2838a0ca89f8
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => aliased to 1.5 for dev-master
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient/commits/cc55f3cf482919c2e2bb65a196ae2838a0ca89f8
                                )

                            [17] => Array
                                (
                                    [sha] => a60b874a9f48f9a1cbd9b670d6bdc59d3d95cdbc
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed bad class name
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient/commits/a60b874a9f48f9a1cbd9b670d6bdc59d3d95cdbc
                                )

                            [18] => Array
                                (
                                    [sha] => 574591600ae6adad49cf740635bdd0d4fe4b2f2f
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed bad filename for class
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient/commits/574591600ae6adad49cf740635bdd0d4fe4b2f2f
                                )

                            [19] => Array
                                (
                                    [sha] => 3ed9afcca79e7b69372daee2d5f824204916bdc9
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed composer.lock + removed dev stability
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient/commits/3ed9afcca79e7b69372daee2d5f824204916bdc9
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-12-20T09:11:31Z
        )

    [110] => Array
        (
            [id] => 2476595092
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 27357143
                    [name] => ikwattro/social-network
                    [url] => https://api.github.com/repos/ikwattro/social-network
                )

            [payload] => Array
                (
                    [push_id] => 531230542
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 73d3b8f14ce1f73d7c78ae17574b030a5b3aaf78
                    [before] => 202a6b3ed39051d9b0fcc91c825d69bbea3383e5
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 73d3b8f14ce1f73d7c78ae17574b030a5b3aaf78
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => Create README.md
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/social-network/commits/73d3b8f14ce1f73d7c78ae17574b030a5b3aaf78
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-12-20T09:06:32Z
        )

    [111] => Array
        (
            [id] => 2476592247
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 27449054
                    [name] => ccoenraets/react-employee-directory
                    [url] => https://api.github.com/repos/ccoenraets/react-employee-directory
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-12-20T08:59:50Z
        )

    [112] => Array
        (
            [id] => 2470238027
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 26697243
                    [name] => skenmy/vAMSYS
                    [url] => https://api.github.com/repos/skenmy/vAMSYS
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-12-17T13:51:41Z
        )

    [113] => Array
        (
            [id] => 2470216722
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 16409773
                    [name] => dunglas/php-schema
                    [url] => https://api.github.com/repos/dunglas/php-schema
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-12-17T13:40:55Z
        )

    [114] => Array
        (
            [id] => 2463909304
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 27668939
                    [name] => neo4jrb/meta_model
                    [url] => https://api.github.com/repos/neo4jrb/meta_model
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-12-14T20:14:53Z
            [org] => Array
                (
                    [id] => 8579795
                    [login] => neo4jrb
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neo4jrb
                    [avatar_url] => https://avatars.githubusercontent.com/u/8579795?
                )

        )

    [115] => Array
        (
            [id] => 2458736632
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 15552938
                    [name] => dunglas/DunglasAngularCsrfBundle
                    [url] => https://api.github.com/repos/dunglas/DunglasAngularCsrfBundle
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-12-11T13:33:25Z
        )

    [116] => Array
        (
            [id] => 2458308450
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 523533596
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 008d36276d6af59b75341f1cf704e74510382ac7
                    [before] => 7c7718f85d711a9595d8e2187973c882a7c312cb
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 008d36276d6af59b75341f1cf704e74510382ac7
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => use stable version in readme
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/008d36276d6af59b75341f1cf704e74510382ac7
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-12-11T09:37:42Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [117] => Array
        (
            [id] => 2458306483
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/22
                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/22/labels{/name}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/22/comments
                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/22/events
                            [html_url] => https://github.com/neoxygen/neo4j-neoclient/pull/22
                            [id] => 51588393
                            [number] => 22
                            [title] => Fixed "next significant release" tilde operator use
                            [user] => Array
                                (
                                    [login] => michaelmoussa
                                    [id] => 183833
                                    [avatar_url] => https://avatars.githubusercontent.com/u/183833?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/michaelmoussa
                                    [html_url] => https://github.com/michaelmoussa
                                    [followers_url] => https://api.github.com/users/michaelmoussa/followers
                                    [following_url] => https://api.github.com/users/michaelmoussa/following{/other_user}
                                    [gists_url] => https://api.github.com/users/michaelmoussa/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/michaelmoussa/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/michaelmoussa/subscriptions
                                    [organizations_url] => https://api.github.com/users/michaelmoussa/orgs
                                    [repos_url] => https://api.github.com/users/michaelmoussa/repos
                                    [events_url] => https://api.github.com/users/michaelmoussa/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/michaelmoussa/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => closed
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 3
                            [created_at] => 2014-12-10T17:45:31Z
                            [updated_at] => 2014-12-11T09:36:40Z
                            [closed_at] => 2014-12-11T09:34:24Z
                            [pull_request] => Array
                                (
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/22
                                    [html_url] => https://github.com/neoxygen/neo4j-neoclient/pull/22
                                    [diff_url] => https://github.com/neoxygen/neo4j-neoclient/pull/22.diff
                                    [patch_url] => https://github.com/neoxygen/neo4j-neoclient/pull/22.patch
                                )

                            [body] => The current use of `~x.y.z` notation in `composer.json` makes it impossible, for example, to use a version of Monolog greater than `1.3.x`. Using `~x.y` instead would allow library users to use newer versions of these dependencies while still requiring that the minimum to be required.

This was working the way I suggest until [this commit](https://github.com/neoxygen/neo4j-neoclient/commit/1844f64613cf549badd3bfae2a83fdf50929e0e6), which introduced more strictness.

**Reference:** [Composer documentation for next significant release](https://getcomposer.org/doc/01-basic-usage.md#next-significant-release-tilde-and-caret-operators-)
                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/comments/66593851
                            [html_url] => https://github.com/neoxygen/neo4j-neoclient/pull/22#issuecomment-66593851
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/22
                            [id] => 66593851
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2014-12-11T09:36:40Z
                            [updated_at] => 2014-12-11T09:36:40Z
                            [body] => Tagged 2.0.4
                        )

                )

            [public] => 1
            [created_at] => 2014-12-11T09:36:40Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [118] => Array
        (
            [id] => 2458305600
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [ref] => 2.0.4
                    [ref_type] => tag
                    [master_branch] => master
                    [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-12-11T09:36:11Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [119] => Array
        (
            [id] => 2458302334
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 523530945
                    [size] => 2
                    [distinct_size] => 2
                    [ref] => refs/heads/master
                    [head] => 7c7718f85d711a9595d8e2187973c882a7c312cb
                    [before] => 8f7708a00d7a2c427820dcfe4ce985f9f5ea90d1
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => a08be108e6ce90ff56e1bed72469448f619c50f8
                                    [author] => Array
                                        (
                                            [email] => michael.moussa@gmail.com
                                            [name] => Michael Moussa
                                        )

                                    [message] => Fixed "next significant release" tilde operator use
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/a08be108e6ce90ff56e1bed72469448f619c50f8
                                )

                            [1] => Array
                                (
                                    [sha] => 7c7718f85d711a9595d8e2187973c882a7c312cb
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => Merge pull request #22 from michaelmoussa/master

Fixed "next significant release" tilde operator use
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/7c7718f85d711a9595d8e2187973c882a7c312cb
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-12-11T09:34:24Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [120] => Array
        (
            [id] => 2458302328
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [action] => closed
                    [number] => 22
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/22
                            [id] => 25840795
                            [html_url] => https://github.com/neoxygen/neo4j-neoclient/pull/22
                            [diff_url] => https://github.com/neoxygen/neo4j-neoclient/pull/22.diff
                            [patch_url] => https://github.com/neoxygen/neo4j-neoclient/pull/22.patch
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/22
                            [number] => 22
                            [state] => closed
                            [locked] =>
                            [title] => Fixed "next significant release" tilde operator use
                            [user] => Array
                                (
                                    [login] => michaelmoussa
                                    [id] => 183833
                                    [avatar_url] => https://avatars.githubusercontent.com/u/183833?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/michaelmoussa
                                    [html_url] => https://github.com/michaelmoussa
                                    [followers_url] => https://api.github.com/users/michaelmoussa/followers
                                    [following_url] => https://api.github.com/users/michaelmoussa/following{/other_user}
                                    [gists_url] => https://api.github.com/users/michaelmoussa/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/michaelmoussa/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/michaelmoussa/subscriptions
                                    [organizations_url] => https://api.github.com/users/michaelmoussa/orgs
                                    [repos_url] => https://api.github.com/users/michaelmoussa/repos
                                    [events_url] => https://api.github.com/users/michaelmoussa/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/michaelmoussa/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] => The current use of `~x.y.z` notation in `composer.json` makes it impossible, for example, to use a version of Monolog greater than `1.3.x`. Using `~x.y` instead would allow library users to use newer versions of these dependencies while still requiring that the minimum to be required.

This was working the way I suggest until [this commit](https://github.com/neoxygen/neo4j-neoclient/commit/1844f64613cf549badd3bfae2a83fdf50929e0e6), which introduced more strictness.

**Reference:** [Composer documentation for next significant release](https://getcomposer.org/doc/01-basic-usage.md#next-significant-release-tilde-and-caret-operators-)
                            [created_at] => 2014-12-10T17:45:31Z
                            [updated_at] => 2014-12-11T09:34:24Z
                            [closed_at] => 2014-12-11T09:34:24Z
                            [merged_at] => 2014-12-11T09:34:24Z
                            [merge_commit_sha] => 2f5f74515d53f143e3204f3390f266c8d7f5aa52
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/22/commits
                            [review_comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/22/comments
                            [review_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/22/comments
                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/a08be108e6ce90ff56e1bed72469448f619c50f8
                            [head] => Array
                                (
                                    [label] => michaelmoussa:master
                                    [ref] => master
                                    [sha] => a08be108e6ce90ff56e1bed72469448f619c50f8
                                    [user] => Array
                                        (
                                            [login] => michaelmoussa
                                            [id] => 183833
                                            [avatar_url] => https://avatars.githubusercontent.com/u/183833?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/michaelmoussa
                                            [html_url] => https://github.com/michaelmoussa
                                            [followers_url] => https://api.github.com/users/michaelmoussa/followers
                                            [following_url] => https://api.github.com/users/michaelmoussa/following{/other_user}
                                            [gists_url] => https://api.github.com/users/michaelmoussa/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/michaelmoussa/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/michaelmoussa/subscriptions
                                            [organizations_url] => https://api.github.com/users/michaelmoussa/orgs
                                            [repos_url] => https://api.github.com/users/michaelmoussa/repos
                                            [events_url] => https://api.github.com/users/michaelmoussa/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/michaelmoussa/received_events
                                            [type] => User
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 27829952
                                            [name] => neo4j-neoclient
                                            [full_name] => michaelmoussa/neo4j-neoclient
                                            [owner] => Array
                                                (
                                                    [login] => michaelmoussa
                                                    [id] => 183833
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/183833?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/michaelmoussa
                                                    [html_url] => https://github.com/michaelmoussa
                                                    [followers_url] => https://api.github.com/users/michaelmoussa/followers
                                                    [following_url] => https://api.github.com/users/michaelmoussa/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/michaelmoussa/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/michaelmoussa/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/michaelmoussa/subscriptions
                                                    [organizations_url] => https://api.github.com/users/michaelmoussa/orgs
                                                    [repos_url] => https://api.github.com/users/michaelmoussa/repos
                                                    [events_url] => https://api.github.com/users/michaelmoussa/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/michaelmoussa/received_events
                                                    [type] => User
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/michaelmoussa/neo4j-neoclient
                                            [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                                            [fork] => 1
                                            [url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient
                                            [forks_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/forks
                                            [keys_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/teams
                                            [hooks_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/hooks
                                            [issue_events_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/events
                                            [assignees_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/tags
                                            [blobs_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/languages
                                            [stargazers_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/stargazers
                                            [contributors_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/contributors
                                            [subscribers_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/subscribers
                                            [subscription_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/subscription
                                            [commits_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/merges
                                            [archive_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/downloads
                                            [issues_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/labels{/name}
                                            [releases_url] => https://api.github.com/repos/michaelmoussa/neo4j-neoclient/releases{/id}
                                            [created_at] => 2014-12-10T17:01:48Z
                                            [updated_at] => 2014-12-10T17:28:46Z
                                            [pushed_at] => 2014-12-10T17:28:46Z
                                            [git_url] => git://github.com/michaelmoussa/neo4j-neoclient.git
                                            [ssh_url] => git@github.com:michaelmoussa/neo4j-neoclient.git
                                            [clone_url] => https://github.com/michaelmoussa/neo4j-neoclient.git
                                            [svn_url] => https://github.com/michaelmoussa/neo4j-neoclient
                                            [homepage] =>
                                            [size] => 1153
                                            [stargazers_count] => 0
                                            [watchers_count] => 0
                                            [language] => PHP
                                            [has_issues] =>
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 0
                                            [mirror_url] =>
                                            [open_issues_count] => 0
                                            [forks] => 0
                                            [open_issues] => 0
                                            [watchers] => 0
                                            [default_branch] => master
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => neoxygen:master
                                    [ref] => master
                                    [sha] => 8f7708a00d7a2c427820dcfe4ce985f9f5ea90d1
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 24004568
                                            [name] => neo4j-neoclient
                                            [full_name] => neoxygen/neo4j-neoclient
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/releases{/id}
                                            [created_at] => 2014-09-13T20:10:36Z
                                            [updated_at] => 2014-12-09T12:47:38Z
                                            [pushed_at] => 2014-12-11T09:34:24Z
                                            [git_url] => git://github.com/neoxygen/neo4j-neoclient.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-neoclient.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-neoclient.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [homepage] =>
                                            [size] => 1153
                                            [stargazers_count] => 16
                                            [watchers_count] => 16
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 5
                                            [mirror_url] =>
                                            [open_issues_count] => 0
                                            [forks] => 5
                                            [open_issues] => 0
                                            [watchers] => 16
                                            [default_branch] => master
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/22
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neoxygen/neo4j-neoclient/pull/22
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/22
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/22/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/22/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/22/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/a08be108e6ce90ff56e1bed72469448f619c50f8
                                        )

                                )

                            [merged] => 1
                            [mergeable] =>
                            [mergeable_state] => unknown
                            [merged_by] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [comments] => 2
                            [review_comments] => 0
                            [commits] => 1
                            [additions] => 68
                            [deletions] => 55
                            [changed_files] => 2
                        )

                )

            [public] => 1
            [created_at] => 2014-12-11T09:34:24Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [121] => Array
        (
            [id] => 2458302196
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/22
                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/22/labels{/name}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/22/comments
                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/22/events
                            [html_url] => https://github.com/neoxygen/neo4j-neoclient/pull/22
                            [id] => 51588393
                            [number] => 22
                            [title] => Fixed "next significant release" tilde operator use
                            [user] => Array
                                (
                                    [login] => michaelmoussa
                                    [id] => 183833
                                    [avatar_url] => https://avatars.githubusercontent.com/u/183833?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/michaelmoussa
                                    [html_url] => https://github.com/michaelmoussa
                                    [followers_url] => https://api.github.com/users/michaelmoussa/followers
                                    [following_url] => https://api.github.com/users/michaelmoussa/following{/other_user}
                                    [gists_url] => https://api.github.com/users/michaelmoussa/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/michaelmoussa/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/michaelmoussa/subscriptions
                                    [organizations_url] => https://api.github.com/users/michaelmoussa/orgs
                                    [repos_url] => https://api.github.com/users/michaelmoussa/repos
                                    [events_url] => https://api.github.com/users/michaelmoussa/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/michaelmoussa/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => open
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 2
                            [created_at] => 2014-12-10T17:45:31Z
                            [updated_at] => 2014-12-11T09:34:21Z
                            [closed_at] =>
                            [pull_request] => Array
                                (
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/22
                                    [html_url] => https://github.com/neoxygen/neo4j-neoclient/pull/22
                                    [diff_url] => https://github.com/neoxygen/neo4j-neoclient/pull/22.diff
                                    [patch_url] => https://github.com/neoxygen/neo4j-neoclient/pull/22.patch
                                )

                            [body] => The current use of `~x.y.z` notation in `composer.json` makes it impossible, for example, to use a version of Monolog greater than `1.3.x`. Using `~x.y` instead would allow library users to use newer versions of these dependencies while still requiring that the minimum to be required.

This was working the way I suggest until [this commit](https://github.com/neoxygen/neo4j-neoclient/commit/1844f64613cf549badd3bfae2a83fdf50929e0e6), which introduced more strictness.

**Reference:** [Composer documentation for next significant release](https://getcomposer.org/doc/01-basic-usage.md#next-significant-release-tilde-and-caret-operators-)
                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/comments/66593568
                            [html_url] => https://github.com/neoxygen/neo4j-neoclient/pull/22#issuecomment-66593568
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/22
                            [id] => 66593568
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2014-12-11T09:34:21Z
                            [updated_at] => 2014-12-11T09:34:21Z
                            [body] => After some checks. It's ok :)
                        )

                )

            [public] => 1
            [created_at] => 2014-12-11T09:34:21Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [122] => Array
        (
            [id] => 2456876958
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/22
                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/22/labels{/name}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/22/comments
                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/22/events
                            [html_url] => https://github.com/neoxygen/neo4j-neoclient/pull/22
                            [id] => 51588393
                            [number] => 22
                            [title] => Fixed "next significant release" tilde operator use
                            [user] => Array
                                (
                                    [login] => michaelmoussa
                                    [id] => 183833
                                    [avatar_url] => https://avatars.githubusercontent.com/u/183833?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/michaelmoussa
                                    [html_url] => https://github.com/michaelmoussa
                                    [followers_url] => https://api.github.com/users/michaelmoussa/followers
                                    [following_url] => https://api.github.com/users/michaelmoussa/following{/other_user}
                                    [gists_url] => https://api.github.com/users/michaelmoussa/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/michaelmoussa/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/michaelmoussa/subscriptions
                                    [organizations_url] => https://api.github.com/users/michaelmoussa/orgs
                                    [repos_url] => https://api.github.com/users/michaelmoussa/repos
                                    [events_url] => https://api.github.com/users/michaelmoussa/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/michaelmoussa/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => open
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 1
                            [created_at] => 2014-12-10T17:45:31Z
                            [updated_at] => 2014-12-10T18:36:14Z
                            [closed_at] =>
                            [pull_request] => Array
                                (
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/22
                                    [html_url] => https://github.com/neoxygen/neo4j-neoclient/pull/22
                                    [diff_url] => https://github.com/neoxygen/neo4j-neoclient/pull/22.diff
                                    [patch_url] => https://github.com/neoxygen/neo4j-neoclient/pull/22.patch
                                )

                            [body] => The current use of `~x.y.z` notation in `composer.json` makes it impossible, for example, to use a version of Monolog greater than `1.3.x`. Using `~x.y` instead would allow library users to use newer versions of these dependencies while still requiring that the minimum to be required.

This was working the way I suggest until [this commit](https://github.com/neoxygen/neo4j-neoclient/commit/1844f64613cf549badd3bfae2a83fdf50929e0e6), which introduced more strictness.

**Reference:** [Composer documentation for next significant release](https://getcomposer.org/doc/01-basic-usage.md#next-significant-release-tilde-and-caret-operators-)
                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/comments/66499906
                            [html_url] => https://github.com/neoxygen/neo4j-neoclient/pull/22#issuecomment-66499906
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/22
                            [id] => 66499906
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2014-12-10T18:36:14Z
                            [updated_at] => 2014-12-10T18:36:14Z
                            [body] => Hi thanks for the report. I'm ok for allowing less strict versions for monolog. However currently I'm not ok for allowing less strictness for the symfony components. I'm aware of some warnings that can occur, for the yaml component for e.g. .

We can for the sf components discuss it when I have reviewed all the components in the 2.7-dev version ?

If you can modify for now only the monolog dep, I'm ok to merge it
                        )

                )

            [public] => 1
            [created_at] => 2014-12-10T18:36:14Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [123] => Array
        (
            [id] => 2450703047
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [ref] => 0.5.5
                    [ref_type] => tag
                    [master_branch] => master
                    [description] => Easy generation of dummy Neo4j graphs with PHP
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-12-08T11:59:05Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [124] => Array
        (
            [id] => 2450702282
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 520338884
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => d1c4dd31bb412b07db87189336b206f77afe99f1
                    [before] => 42fbf0ea6a1921f1eaba419fd15b2c31c22c3a45
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => d1c4dd31bb412b07db87189336b206f77afe99f1
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => updated composer to include neogen bin and fixed deps
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/d1c4dd31bb412b07db87189336b206f77afe99f1
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-12-08T11:58:35Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [125] => Array
        (
            [id] => 2449855908
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 8983754
                    [name] => jexp/cypher_websocket_endpoint
                    [url] => https://api.github.com/repos/jexp/cypher_websocket_endpoint
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-12-07T22:58:56Z
        )

    [126] => Array
        (
            [id] => 2445642451
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 1831266
                    [name] => haschek/PubwichFork
                    [url] => https://api.github.com/repos/haschek/PubwichFork
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-12-04T22:28:59Z
        )

    [127] => Array
        (
            [id] => 2445625533
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 3926386
                    [name] => neo4j-contrib/rabbithole
                    [url] => https://api.github.com/repos/neo4j-contrib/rabbithole
                )

            [payload] => Array
                (
                    [action] => opened
                    [number] => 79
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neo4j-contrib/rabbithole/pulls/79
                            [id] => 25533644
                            [html_url] => https://github.com/neo4j-contrib/rabbithole/pull/79
                            [diff_url] => https://github.com/neo4j-contrib/rabbithole/pull/79.diff
                            [patch_url] => https://github.com/neo4j-contrib/rabbithole/pull/79.patch
                            [issue_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/issues/79
                            [number] => 79
                            [state] => open
                            [locked] =>
                            [title] => fixed results details not being scrollable for large details
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] => Hi,

I added a scroll on the results details div, when details are becoming large, the execution plan was not scrollable :

before :

![Imgur](http://i.imgur.com/FBc2bp0.png)

After :

![Imgur](http://i.imgur.com/50Do00Z.png)
                            [created_at] => 2014-12-04T22:21:03Z
                            [updated_at] => 2014-12-04T22:21:03Z
                            [closed_at] =>
                            [merged_at] =>
                            [merge_commit_sha] => a56f542aaba3819138fb74d0a0ab0879b621f589
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/pulls/79/commits
                            [review_comments_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/pulls/79/comments
                            [review_comment_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/issues/79/comments
                            [statuses_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/statuses/e585f6721489df4fc759b7b801f4e444109be6f9
                            [head] => Array
                                (
                                    [label] => ikwattro:result-popup-scroll
                                    [ref] => result-popup-scroll
                                    [sha] => e585f6721489df4fc759b7b801f4e444109be6f9
                                    [user] => Array
                                        (
                                            [login] => ikwattro
                                            [id] => 1222009
                                            [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/ikwattro
                                            [html_url] => https://github.com/ikwattro
                                            [followers_url] => https://api.github.com/users/ikwattro/followers
                                            [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                            [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                            [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                            [repos_url] => https://api.github.com/users/ikwattro/repos
                                            [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                            [type] => User
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 27562552
                                            [name] => rabbithole
                                            [full_name] => ikwattro/rabbithole
                                            [owner] => Array
                                                (
                                                    [login] => ikwattro
                                                    [id] => 1222009
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/ikwattro
                                                    [html_url] => https://github.com/ikwattro
                                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                                    [type] => User
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/ikwattro/rabbithole
                                            [description] => Interactive, embeddable Neo4j-Console
                                            [fork] => 1
                                            [url] => https://api.github.com/repos/ikwattro/rabbithole
                                            [forks_url] => https://api.github.com/repos/ikwattro/rabbithole/forks
                                            [keys_url] => https://api.github.com/repos/ikwattro/rabbithole/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/ikwattro/rabbithole/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/ikwattro/rabbithole/teams
                                            [hooks_url] => https://api.github.com/repos/ikwattro/rabbithole/hooks
                                            [issue_events_url] => https://api.github.com/repos/ikwattro/rabbithole/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/ikwattro/rabbithole/events
                                            [assignees_url] => https://api.github.com/repos/ikwattro/rabbithole/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/ikwattro/rabbithole/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/ikwattro/rabbithole/tags
                                            [blobs_url] => https://api.github.com/repos/ikwattro/rabbithole/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/ikwattro/rabbithole/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/ikwattro/rabbithole/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/ikwattro/rabbithole/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/ikwattro/rabbithole/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/ikwattro/rabbithole/languages
                                            [stargazers_url] => https://api.github.com/repos/ikwattro/rabbithole/stargazers
                                            [contributors_url] => https://api.github.com/repos/ikwattro/rabbithole/contributors
                                            [subscribers_url] => https://api.github.com/repos/ikwattro/rabbithole/subscribers
                                            [subscription_url] => https://api.github.com/repos/ikwattro/rabbithole/subscription
                                            [commits_url] => https://api.github.com/repos/ikwattro/rabbithole/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/ikwattro/rabbithole/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/ikwattro/rabbithole/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/ikwattro/rabbithole/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/ikwattro/rabbithole/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/ikwattro/rabbithole/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/ikwattro/rabbithole/merges
                                            [archive_url] => https://api.github.com/repos/ikwattro/rabbithole/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/ikwattro/rabbithole/downloads
                                            [issues_url] => https://api.github.com/repos/ikwattro/rabbithole/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/ikwattro/rabbithole/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/ikwattro/rabbithole/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/ikwattro/rabbithole/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/ikwattro/rabbithole/labels{/name}
                                            [releases_url] => https://api.github.com/repos/ikwattro/rabbithole/releases{/id}
                                            [created_at] => 2014-12-04T22:14:27Z
                                            [updated_at] => 2014-12-04T22:14:27Z
                                            [pushed_at] => 2014-12-04T22:16:59Z
                                            [git_url] => git://github.com/ikwattro/rabbithole.git
                                            [ssh_url] => git@github.com:ikwattro/rabbithole.git
                                            [clone_url] => https://github.com/ikwattro/rabbithole.git
                                            [svn_url] => https://github.com/ikwattro/rabbithole
                                            [homepage] => http://rabbithole.heroku.com
                                            [size] => 4942
                                            [stargazers_count] => 0
                                            [watchers_count] => 0
                                            [language] => Java
                                            [has_issues] =>
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 0
                                            [mirror_url] =>
                                            [open_issues_count] => 0
                                            [forks] => 0
                                            [open_issues] => 0
                                            [watchers] => 0
                                            [default_branch] => master
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => neo4j-contrib:master
                                    [ref] => master
                                    [sha] => 11c0da89a0088897297174d1f2ac8126a26e2753
                                    [user] => Array
                                        (
                                            [login] => neo4j-contrib
                                            [id] => 916372
                                            [avatar_url] => https://avatars.githubusercontent.com/u/916372?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neo4j-contrib
                                            [html_url] => https://github.com/neo4j-contrib
                                            [followers_url] => https://api.github.com/users/neo4j-contrib/followers
                                            [following_url] => https://api.github.com/users/neo4j-contrib/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neo4j-contrib/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neo4j-contrib/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neo4j-contrib/subscriptions
                                            [organizations_url] => https://api.github.com/users/neo4j-contrib/orgs
                                            [repos_url] => https://api.github.com/users/neo4j-contrib/repos
                                            [events_url] => https://api.github.com/users/neo4j-contrib/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neo4j-contrib/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 3926386
                                            [name] => rabbithole
                                            [full_name] => neo4j-contrib/rabbithole
                                            [owner] => Array
                                                (
                                                    [login] => neo4j-contrib
                                                    [id] => 916372
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/916372?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neo4j-contrib
                                                    [html_url] => https://github.com/neo4j-contrib
                                                    [followers_url] => https://api.github.com/users/neo4j-contrib/followers
                                                    [following_url] => https://api.github.com/users/neo4j-contrib/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neo4j-contrib/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neo4j-contrib/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neo4j-contrib/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neo4j-contrib/orgs
                                                    [repos_url] => https://api.github.com/users/neo4j-contrib/repos
                                                    [events_url] => https://api.github.com/users/neo4j-contrib/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neo4j-contrib/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neo4j-contrib/rabbithole
                                            [description] => Interactive, embeddable Neo4j-Console
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neo4j-contrib/rabbithole
                                            [forks_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/forks
                                            [keys_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/teams
                                            [hooks_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/hooks
                                            [issue_events_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/events
                                            [assignees_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/tags
                                            [blobs_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/languages
                                            [stargazers_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/stargazers
                                            [contributors_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/contributors
                                            [subscribers_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/subscribers
                                            [subscription_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/subscription
                                            [commits_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/merges
                                            [archive_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/downloads
                                            [issues_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neo4j-contrib/rabbithole/releases{/id}
                                            [created_at] => 2012-04-04T07:21:00Z
                                            [updated_at] => 2014-12-04T20:52:17Z
                                            [pushed_at] => 2014-12-04T21:26:23Z
                                            [git_url] => git://github.com/neo4j-contrib/rabbithole.git
                                            [ssh_url] => git@github.com:neo4j-contrib/rabbithole.git
                                            [clone_url] => https://github.com/neo4j-contrib/rabbithole.git
                                            [svn_url] => https://github.com/neo4j-contrib/rabbithole
                                            [homepage] => http://rabbithole.heroku.com
                                            [size] => 4942
                                            [stargazers_count] => 50
                                            [watchers_count] => 50
                                            [language] => Java
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 26
                                            [mirror_url] =>
                                            [open_issues_count] => 36
                                            [forks] => 26
                                            [open_issues] => 36
                                            [watchers] => 50
                                            [default_branch] => master
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/rabbithole/pulls/79
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neo4j-contrib/rabbithole/pull/79
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/rabbithole/issues/79
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/rabbithole/issues/79/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/rabbithole/pulls/79/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/rabbithole/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/rabbithole/pulls/79/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/rabbithole/statuses/e585f6721489df4fc759b7b801f4e444109be6f9
                                        )

                                )

                            [merged] =>
                            [mergeable] => 1
                            [mergeable_state] => clean
                            [merged_by] =>
                            [comments] => 0
                            [review_comments] => 0
                            [commits] => 1
                            [additions] => 4
                            [deletions] => 0
                            [changed_files] => 1
                        )

                )

            [public] => 1
            [created_at] => 2014-12-04T22:21:03Z
            [org] => Array
                (
                    [id] => 916372
                    [login] => neo4j-contrib
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neo4j-contrib
                    [avatar_url] => https://avatars.githubusercontent.com/u/916372?
                )

        )

    [128] => Array
        (
            [id] => 2445616416
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 27562552
                    [name] => ikwattro/rabbithole
                    [url] => https://api.github.com/repos/ikwattro/rabbithole
                )

            [payload] => Array
                (
                    [ref] => result-popup-scroll
                    [ref_type] => branch
                    [master_branch] => master
                    [description] => Interactive, embeddable Neo4j-Console
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-12-04T22:17:00Z
        )

    [129] => Array
        (
            [id] => 2445610921
            [type] => ForkEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 3926386
                    [name] => neo4j-contrib/rabbithole
                    [url] => https://api.github.com/repos/neo4j-contrib/rabbithole
                )

            [payload] => Array
                (
                    [forkee] => Array
                        (
                            [id] => 27562552
                            [name] => rabbithole
                            [full_name] => ikwattro/rabbithole
                            [owner] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [private] =>
                            [html_url] => https://github.com/ikwattro/rabbithole
                            [description] => Interactive, embeddable Neo4j-Console
                            [fork] => 1
                            [url] => https://api.github.com/repos/ikwattro/rabbithole
                            [forks_url] => https://api.github.com/repos/ikwattro/rabbithole/forks
                            [keys_url] => https://api.github.com/repos/ikwattro/rabbithole/keys{/key_id}
                            [collaborators_url] => https://api.github.com/repos/ikwattro/rabbithole/collaborators{/collaborator}
                            [teams_url] => https://api.github.com/repos/ikwattro/rabbithole/teams
                            [hooks_url] => https://api.github.com/repos/ikwattro/rabbithole/hooks
                            [issue_events_url] => https://api.github.com/repos/ikwattro/rabbithole/issues/events{/number}
                            [events_url] => https://api.github.com/repos/ikwattro/rabbithole/events
                            [assignees_url] => https://api.github.com/repos/ikwattro/rabbithole/assignees{/user}
                            [branches_url] => https://api.github.com/repos/ikwattro/rabbithole/branches{/branch}
                            [tags_url] => https://api.github.com/repos/ikwattro/rabbithole/tags
                            [blobs_url] => https://api.github.com/repos/ikwattro/rabbithole/git/blobs{/sha}
                            [git_tags_url] => https://api.github.com/repos/ikwattro/rabbithole/git/tags{/sha}
                            [git_refs_url] => https://api.github.com/repos/ikwattro/rabbithole/git/refs{/sha}
                            [trees_url] => https://api.github.com/repos/ikwattro/rabbithole/git/trees{/sha}
                            [statuses_url] => https://api.github.com/repos/ikwattro/rabbithole/statuses/{sha}
                            [languages_url] => https://api.github.com/repos/ikwattro/rabbithole/languages
                            [stargazers_url] => https://api.github.com/repos/ikwattro/rabbithole/stargazers
                            [contributors_url] => https://api.github.com/repos/ikwattro/rabbithole/contributors
                            [subscribers_url] => https://api.github.com/repos/ikwattro/rabbithole/subscribers
                            [subscription_url] => https://api.github.com/repos/ikwattro/rabbithole/subscription
                            [commits_url] => https://api.github.com/repos/ikwattro/rabbithole/commits{/sha}
                            [git_commits_url] => https://api.github.com/repos/ikwattro/rabbithole/git/commits{/sha}
                            [comments_url] => https://api.github.com/repos/ikwattro/rabbithole/comments{/number}
                            [issue_comment_url] => https://api.github.com/repos/ikwattro/rabbithole/issues/comments/{number}
                            [contents_url] => https://api.github.com/repos/ikwattro/rabbithole/contents/{+path}
                            [compare_url] => https://api.github.com/repos/ikwattro/rabbithole/compare/{base}...{head}
                            [merges_url] => https://api.github.com/repos/ikwattro/rabbithole/merges
                            [archive_url] => https://api.github.com/repos/ikwattro/rabbithole/{archive_format}{/ref}
                            [downloads_url] => https://api.github.com/repos/ikwattro/rabbithole/downloads
                            [issues_url] => https://api.github.com/repos/ikwattro/rabbithole/issues{/number}
                            [pulls_url] => https://api.github.com/repos/ikwattro/rabbithole/pulls{/number}
                            [milestones_url] => https://api.github.com/repos/ikwattro/rabbithole/milestones{/number}
                            [notifications_url] => https://api.github.com/repos/ikwattro/rabbithole/notifications{?since,all,participating}
                            [labels_url] => https://api.github.com/repos/ikwattro/rabbithole/labels{/name}
                            [releases_url] => https://api.github.com/repos/ikwattro/rabbithole/releases{/id}
                            [created_at] => 2014-12-04T22:14:27Z
                            [updated_at] => 2014-12-04T20:52:17Z
                            [pushed_at] => 2014-12-04T21:26:23Z
                            [git_url] => git://github.com/ikwattro/rabbithole.git
                            [ssh_url] => git@github.com:ikwattro/rabbithole.git
                            [clone_url] => https://github.com/ikwattro/rabbithole.git
                            [svn_url] => https://github.com/ikwattro/rabbithole
                            [homepage] => http://rabbithole.heroku.com
                            [size] => 4942
                            [stargazers_count] => 0
                            [watchers_count] => 0
                            [language] =>
                            [has_issues] =>
                            [has_downloads] => 1
                            [has_wiki] => 1
                            [has_pages] =>
                            [forks_count] => 0
                            [mirror_url] =>
                            [open_issues_count] => 0
                            [forks] => 0
                            [open_issues] => 0
                            [watchers] => 0
                            [default_branch] => master
                            [public] => 1
                        )

                )

            [public] => 1
            [created_at] => 2014-12-04T22:14:27Z
            [org] => Array
                (
                    [id] => 916372
                    [login] => neo4j-contrib
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neo4j-contrib
                    [avatar_url] => https://avatars.githubusercontent.com/u/916372?
                )

        )

    [130] => Array
        (
            [id] => 2445029970
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [ref] => 2.0.3
                    [ref_type] => tag
                    [master_branch] => master
                    [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-12-04T18:08:57Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [131] => Array
        (
            [id] => 2445028724
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 517855985
                    [size] => 5
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 8f7708a00d7a2c427820dcfe4ce985f9f5ea90d1
                    [before] => 2675ea9ead582818600e07b0188381e62d969bc8
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 8890a568262355d4f8e7dd9af46bc7cb3d99eaa1
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => some tests fixes for 2.2
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/8890a568262355d4f8e7dd9af46bc7cb3d99eaa1
                                )

                            [1] => Array
                                (
                                    [sha] => ec2f12a4e1ac61423199754b99b58cd3b964ee6c
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added set token script
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/ec2f12a4e1ac61423199754b99b58cd3b964ee6c
                                )

                            [2] => Array
                                (
                                    [sha] => 4cef75e57328fce86074e1a2f58aff4e176866bc
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed getRoot test
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/4cef75e57328fce86074e1a2f58aff4e176866bc
                                )

                            [3] => Array
                                (
                                    [sha] => fc06c146ab69346c8541d8397e3077ae5e65a2ea
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added note for token in 2.2
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/fc06c146ab69346c8541d8397e3077ae5e65a2ea
                                )

                            [4] => Array
                                (
                                    [sha] => 8f7708a00d7a2c427820dcfe4ce985f9f5ea90d1
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => Merge pull request #21 from neoxygen/auth2

Neo4j 2.2 auth support
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/8f7708a00d7a2c427820dcfe4ce985f9f5ea90d1
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-12-04T18:08:22Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [132] => Array
        (
            [id] => 2445028716
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [action] => closed
                    [number] => 21
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/21
                            [id] => 25513719
                            [html_url] => https://github.com/neoxygen/neo4j-neoclient/pull/21
                            [diff_url] => https://github.com/neoxygen/neo4j-neoclient/pull/21.diff
                            [patch_url] => https://github.com/neoxygen/neo4j-neoclient/pull/21.patch
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/21
                            [number] => 21
                            [state] => closed
                            [locked] =>
                            [title] => Neo4j 2.2 auth support
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] =>
                            [created_at] => 2014-12-04T17:36:11Z
                            [updated_at] => 2014-12-04T18:08:22Z
                            [closed_at] => 2014-12-04T18:08:22Z
                            [merged_at] => 2014-12-04T18:08:22Z
                            [merge_commit_sha] => 1bcedbb040fe9b62c7c10be336053d2874d7bf05
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/21/commits
                            [review_comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/21/comments
                            [review_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/21/comments
                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/fc06c146ab69346c8541d8397e3077ae5e65a2ea
                            [head] => Array
                                (
                                    [label] => neoxygen:auth2
                                    [ref] => auth2
                                    [sha] => fc06c146ab69346c8541d8397e3077ae5e65a2ea
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 24004568
                                            [name] => neo4j-neoclient
                                            [full_name] => neoxygen/neo4j-neoclient
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/releases{/id}
                                            [created_at] => 2014-09-13T20:10:36Z
                                            [updated_at] => 2014-12-02T11:21:51Z
                                            [pushed_at] => 2014-12-04T18:08:22Z
                                            [git_url] => git://github.com/neoxygen/neo4j-neoclient.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-neoclient.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-neoclient.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [homepage] =>
                                            [size] => 1109
                                            [stargazers_count] => 15
                                            [watchers_count] => 15
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 4
                                            [mirror_url] =>
                                            [open_issues_count] => 0
                                            [forks] => 4
                                            [open_issues] => 0
                                            [watchers] => 15
                                            [default_branch] => master
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => neoxygen:master
                                    [ref] => master
                                    [sha] => 2675ea9ead582818600e07b0188381e62d969bc8
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 24004568
                                            [name] => neo4j-neoclient
                                            [full_name] => neoxygen/neo4j-neoclient
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/releases{/id}
                                            [created_at] => 2014-09-13T20:10:36Z
                                            [updated_at] => 2014-12-02T11:21:51Z
                                            [pushed_at] => 2014-12-04T18:08:22Z
                                            [git_url] => git://github.com/neoxygen/neo4j-neoclient.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-neoclient.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-neoclient.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [homepage] =>
                                            [size] => 1109
                                            [stargazers_count] => 15
                                            [watchers_count] => 15
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 4
                                            [mirror_url] =>
                                            [open_issues_count] => 0
                                            [forks] => 4
                                            [open_issues] => 0
                                            [watchers] => 15
                                            [default_branch] => master
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/21
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neoxygen/neo4j-neoclient/pull/21
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/21
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/21/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/21/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/21/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/fc06c146ab69346c8541d8397e3077ae5e65a2ea
                                        )

                                )

                            [merged] => 1
                            [mergeable] =>
                            [mergeable_state] => unknown
                            [merged_by] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [comments] => 0
                            [review_comments] => 0
                            [commits] => 4
                            [additions] => 18
                            [deletions] => 22
                            [changed_files] => 8
                        )

                )

            [public] => 1
            [created_at] => 2014-12-04T18:08:22Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [133] => Array
        (
            [id] => 2444955070
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [action] => opened
                    [number] => 21
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/21
                            [id] => 25513719
                            [html_url] => https://github.com/neoxygen/neo4j-neoclient/pull/21
                            [diff_url] => https://github.com/neoxygen/neo4j-neoclient/pull/21.diff
                            [patch_url] => https://github.com/neoxygen/neo4j-neoclient/pull/21.patch
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/21
                            [number] => 21
                            [state] => open
                            [locked] =>
                            [title] => Neo4j 2.2 auth support
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] =>
                            [created_at] => 2014-12-04T17:36:11Z
                            [updated_at] => 2014-12-04T17:36:11Z
                            [closed_at] =>
                            [merged_at] =>
                            [merge_commit_sha] => 1bcedbb040fe9b62c7c10be336053d2874d7bf05
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/21/commits
                            [review_comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/21/comments
                            [review_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/21/comments
                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/fc06c146ab69346c8541d8397e3077ae5e65a2ea
                            [head] => Array
                                (
                                    [label] => neoxygen:auth2
                                    [ref] => auth2
                                    [sha] => fc06c146ab69346c8541d8397e3077ae5e65a2ea
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 24004568
                                            [name] => neo4j-neoclient
                                            [full_name] => neoxygen/neo4j-neoclient
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/releases{/id}
                                            [created_at] => 2014-09-13T20:10:36Z
                                            [updated_at] => 2014-12-02T11:21:51Z
                                            [pushed_at] => 2014-12-04T17:33:04Z
                                            [git_url] => git://github.com/neoxygen/neo4j-neoclient.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-neoclient.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-neoclient.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [homepage] =>
                                            [size] => 1109
                                            [stargazers_count] => 15
                                            [watchers_count] => 15
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 4
                                            [mirror_url] =>
                                            [open_issues_count] => 1
                                            [forks] => 4
                                            [open_issues] => 1
                                            [watchers] => 15
                                            [default_branch] => master
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => neoxygen:master
                                    [ref] => master
                                    [sha] => 2675ea9ead582818600e07b0188381e62d969bc8
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 24004568
                                            [name] => neo4j-neoclient
                                            [full_name] => neoxygen/neo4j-neoclient
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/releases{/id}
                                            [created_at] => 2014-09-13T20:10:36Z
                                            [updated_at] => 2014-12-02T11:21:51Z
                                            [pushed_at] => 2014-12-04T17:33:04Z
                                            [git_url] => git://github.com/neoxygen/neo4j-neoclient.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-neoclient.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-neoclient.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [homepage] =>
                                            [size] => 1109
                                            [stargazers_count] => 15
                                            [watchers_count] => 15
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 4
                                            [mirror_url] =>
                                            [open_issues_count] => 1
                                            [forks] => 4
                                            [open_issues] => 1
                                            [watchers] => 15
                                            [default_branch] => master
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/21
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neoxygen/neo4j-neoclient/pull/21
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/21
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/21/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/21/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/21/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/fc06c146ab69346c8541d8397e3077ae5e65a2ea
                                        )

                                )

                            [merged] =>
                            [mergeable] => 1
                            [mergeable_state] => unstable
                            [merged_by] =>
                            [comments] => 0
                            [review_comments] => 0
                            [commits] => 4
                            [additions] => 18
                            [deletions] => 22
                            [changed_files] => 8
                        )

                )

            [public] => 1
            [created_at] => 2014-12-04T17:36:12Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [134] => Array
        (
            [id] => 2444947711
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 517822672
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/auth2
                    [head] => fc06c146ab69346c8541d8397e3077ae5e65a2ea
                    [before] => 4cef75e57328fce86074e1a2f58aff4e176866bc
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => fc06c146ab69346c8541d8397e3077ae5e65a2ea
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added note for token in 2.2
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/fc06c146ab69346c8541d8397e3077ae5e65a2ea
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-12-04T17:33:05Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [135] => Array
        (
            [id] => 2444905214
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 517805428
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/auth2
                    [head] => 4cef75e57328fce86074e1a2f58aff4e176866bc
                    [before] => ec2f12a4e1ac61423199754b99b58cd3b964ee6c
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 4cef75e57328fce86074e1a2f58aff4e176866bc
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed getRoot test
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/4cef75e57328fce86074e1a2f58aff4e176866bc
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-12-04T17:15:40Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [136] => Array
        (
            [id] => 2444867027
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 517788860
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/auth2
                    [head] => ec2f12a4e1ac61423199754b99b58cd3b964ee6c
                    [before] => 8890a568262355d4f8e7dd9af46bc7cb3d99eaa1
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => ec2f12a4e1ac61423199754b99b58cd3b964ee6c
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added set token script
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/ec2f12a4e1ac61423199754b99b58cd3b964ee6c
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-12-04T17:00:38Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [137] => Array
        (
            [id] => 2444852108
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [ref] => auth2
                    [ref_type] => branch
                    [master_branch] => master
                    [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-12-04T16:55:00Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [138] => Array
        (
            [id] => 2443346484
            [type] => IssuesEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [action] => opened
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/11
                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/11/labels{/name}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/11/comments
                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/11/events
                            [html_url] => https://github.com/neoxygen/neo4j-neogen/issues/11
                            [id] => 50918008
                            [number] => 11
                            [title] => Features for next versions
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => open
                            [locked] =>
                            [assignee] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [milestone] =>
                            [comments] => 0
                            [created_at] => 2014-12-04T01:35:45Z
                            [updated_at] => 2014-12-04T01:35:45Z
                            [closed_at] =>
                            [body] => Some feature plans for next versions :

* possibility to assign the percentage of relationships when having a x..n cardinality :

A new property `percentage` can be added to the relationship yaml definition, with a default of 100.

* Seed

* 5 default values always returned for all types, the implementation should be planned

* possibility to define property constraints and indexes

```
// for constraints
(person:Person {firstname!: firstName})

// for indexes
(person:Person {firstname?: firstName})
```
                        )

                )

            [public] => 1
            [created_at] => 2014-12-04T01:35:45Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [139] => Array
        (
            [id] => 2440378408
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 20803071
                    [name] => Linkurious/sigma.js
                    [url] => https://api.github.com/repos/Linkurious/sigma.js
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-12-02T23:05:21Z
            [org] => Array
                (
                    [id] => 5114457
                    [login] => Linkurious
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/Linkurious
                    [avatar_url] => https://avatars.githubusercontent.com/u/5114457?
                )

        )

    [140] => Array
        (
            [id] => 2438832994
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 21415751
                    [name] => SymfonyCon/2014-talks
                    [url] => https://api.github.com/repos/SymfonyCon/2014-talks
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-12-02T12:27:00Z
            [org] => Array
                (
                    [id] => 7420787
                    [login] => SymfonyCon
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/SymfonyCon
                    [avatar_url] => https://avatars.githubusercontent.com/u/7420787?
                )

        )

    [141] => Array
        (
            [id] => 2438828305
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 25825435
                    [name] => GoIntegro/hateoas-bundle
                    [url] => https://api.github.com/repos/GoIntegro/hateoas-bundle
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-12-02T12:24:09Z
            [org] => Array
                (
                    [id] => 3935252
                    [login] => GoIntegro
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/GoIntegro
                    [avatar_url] => https://avatars.githubusercontent.com/u/3935252?
                )

        )

    [142] => Array
        (
            [id] => 2438742872
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 23597997
                    [name] => neo4j-contrib/developer-resources
                    [url] => https://api.github.com/repos/neo4j-contrib/developer-resources
                )

            [payload] => Array
                (
                    [action] => opened
                    [number] => 50
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/50
                            [id] => 25335164
                            [html_url] => https://github.com/neo4j-contrib/developer-resources/pull/50
                            [diff_url] => https://github.com/neo4j-contrib/developer-resources/pull/50.diff
                            [patch_url] => https://github.com/neo4j-contrib/developer-resources/pull/50.patch
                            [issue_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/50
                            [number] => 50
                            [state] => open
                            [locked] =>
                            [title] => adapted phpdoc to @jexp suggestions
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] => Only the comparison table has been left currently
                            [created_at] => 2014-12-02T11:34:29Z
                            [updated_at] => 2014-12-02T11:34:29Z
                            [closed_at] =>
                            [merged_at] =>
                            [merge_commit_sha] =>
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/50/commits
                            [review_comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/50/comments
                            [review_comment_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/50/comments
                            [statuses_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/statuses/42e542df379066bf22cac210cd92141f08f37a7c
                            [head] => Array
                                (
                                    [label] => ikwattro:phpdoc
                                    [ref] => phpdoc
                                    [sha] => 42e542df379066bf22cac210cd92141f08f37a7c
                                    [user] => Array
                                        (
                                            [login] => ikwattro
                                            [id] => 1222009
                                            [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/ikwattro
                                            [html_url] => https://github.com/ikwattro
                                            [followers_url] => https://api.github.com/users/ikwattro/followers
                                            [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                            [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                            [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                            [repos_url] => https://api.github.com/users/ikwattro/repos
                                            [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                            [type] => User
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 27306229
                                            [name] => developer-resources
                                            [full_name] => ikwattro/developer-resources
                                            [owner] => Array
                                                (
                                                    [login] => ikwattro
                                                    [id] => 1222009
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/ikwattro
                                                    [html_url] => https://github.com/ikwattro
                                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                                    [type] => User
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/ikwattro/developer-resources
                                            [description] => neo4j developer resources
                                            [fork] => 1
                                            [url] => https://api.github.com/repos/ikwattro/developer-resources
                                            [forks_url] => https://api.github.com/repos/ikwattro/developer-resources/forks
                                            [keys_url] => https://api.github.com/repos/ikwattro/developer-resources/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/ikwattro/developer-resources/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/ikwattro/developer-resources/teams
                                            [hooks_url] => https://api.github.com/repos/ikwattro/developer-resources/hooks
                                            [issue_events_url] => https://api.github.com/repos/ikwattro/developer-resources/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/ikwattro/developer-resources/events
                                            [assignees_url] => https://api.github.com/repos/ikwattro/developer-resources/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/ikwattro/developer-resources/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/ikwattro/developer-resources/tags
                                            [blobs_url] => https://api.github.com/repos/ikwattro/developer-resources/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/ikwattro/developer-resources/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/ikwattro/developer-resources/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/ikwattro/developer-resources/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/ikwattro/developer-resources/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/ikwattro/developer-resources/languages
                                            [stargazers_url] => https://api.github.com/repos/ikwattro/developer-resources/stargazers
                                            [contributors_url] => https://api.github.com/repos/ikwattro/developer-resources/contributors
                                            [subscribers_url] => https://api.github.com/repos/ikwattro/developer-resources/subscribers
                                            [subscription_url] => https://api.github.com/repos/ikwattro/developer-resources/subscription
                                            [commits_url] => https://api.github.com/repos/ikwattro/developer-resources/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/ikwattro/developer-resources/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/ikwattro/developer-resources/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/ikwattro/developer-resources/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/ikwattro/developer-resources/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/ikwattro/developer-resources/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/ikwattro/developer-resources/merges
                                            [archive_url] => https://api.github.com/repos/ikwattro/developer-resources/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/ikwattro/developer-resources/downloads
                                            [issues_url] => https://api.github.com/repos/ikwattro/developer-resources/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/ikwattro/developer-resources/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/ikwattro/developer-resources/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/ikwattro/developer-resources/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/ikwattro/developer-resources/labels{/name}
                                            [releases_url] => https://api.github.com/repos/ikwattro/developer-resources/releases{/id}
                                            [created_at] => 2014-11-29T15:31:08Z
                                            [updated_at] => 2014-12-02T11:28:48Z
                                            [pushed_at] => 2014-12-02T11:33:50Z
                                            [git_url] => git://github.com/ikwattro/developer-resources.git
                                            [ssh_url] => git@github.com:ikwattro/developer-resources.git
                                            [clone_url] => https://github.com/ikwattro/developer-resources.git
                                            [svn_url] => https://github.com/ikwattro/developer-resources
                                            [homepage] =>
                                            [size] => 12794
                                            [stargazers_count] => 0
                                            [watchers_count] => 0
                                            [language] => Python
                                            [has_issues] =>
                                            [has_downloads] => 1
                                            [has_wiki] =>
                                            [has_pages] => 1
                                            [forks_count] => 0
                                            [mirror_url] =>
                                            [open_issues_count] => 0
                                            [forks] => 0
                                            [open_issues] => 0
                                            [watchers] => 0
                                            [default_branch] => gh-pages
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => neo4j-contrib:gh-pages
                                    [ref] => gh-pages
                                    [sha] => ad8446a824cbe9decbf64c541510dfe85d90fa71
                                    [user] => Array
                                        (
                                            [login] => neo4j-contrib
                                            [id] => 916372
                                            [avatar_url] => https://avatars.githubusercontent.com/u/916372?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neo4j-contrib
                                            [html_url] => https://github.com/neo4j-contrib
                                            [followers_url] => https://api.github.com/users/neo4j-contrib/followers
                                            [following_url] => https://api.github.com/users/neo4j-contrib/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neo4j-contrib/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neo4j-contrib/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neo4j-contrib/subscriptions
                                            [organizations_url] => https://api.github.com/users/neo4j-contrib/orgs
                                            [repos_url] => https://api.github.com/users/neo4j-contrib/repos
                                            [events_url] => https://api.github.com/users/neo4j-contrib/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neo4j-contrib/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 23597997
                                            [name] => developer-resources
                                            [full_name] => neo4j-contrib/developer-resources
                                            [owner] => Array
                                                (
                                                    [login] => neo4j-contrib
                                                    [id] => 916372
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/916372?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neo4j-contrib
                                                    [html_url] => https://github.com/neo4j-contrib
                                                    [followers_url] => https://api.github.com/users/neo4j-contrib/followers
                                                    [following_url] => https://api.github.com/users/neo4j-contrib/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neo4j-contrib/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neo4j-contrib/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neo4j-contrib/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neo4j-contrib/orgs
                                                    [repos_url] => https://api.github.com/users/neo4j-contrib/repos
                                                    [events_url] => https://api.github.com/users/neo4j-contrib/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neo4j-contrib/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neo4j-contrib/developer-resources
                                            [description] => neo4j developer resources
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources
                                            [forks_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/forks
                                            [keys_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/teams
                                            [hooks_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/hooks
                                            [issue_events_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/events
                                            [assignees_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/tags
                                            [blobs_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/languages
                                            [stargazers_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/stargazers
                                            [contributors_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/contributors
                                            [subscribers_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/subscribers
                                            [subscription_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/subscription
                                            [commits_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/merges
                                            [archive_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/downloads
                                            [issues_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/releases{/id}
                                            [created_at] => 2014-09-02T22:33:24Z
                                            [updated_at] => 2014-12-02T01:46:36Z
                                            [pushed_at] => 2014-12-02T01:46:36Z
                                            [git_url] => git://github.com/neo4j-contrib/developer-resources.git
                                            [ssh_url] => git@github.com:neo4j-contrib/developer-resources.git
                                            [clone_url] => https://github.com/neo4j-contrib/developer-resources.git
                                            [svn_url] => https://github.com/neo4j-contrib/developer-resources
                                            [homepage] =>
                                            [size] => 12794
                                            [stargazers_count] => 21
                                            [watchers_count] => 21
                                            [language] => Python
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] =>
                                            [has_pages] => 1
                                            [forks_count] => 45
                                            [mirror_url] =>
                                            [open_issues_count] => 7
                                            [forks] => 45
                                            [open_issues] => 7
                                            [watchers] => 21
                                            [default_branch] => gh-pages
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/50
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neo4j-contrib/developer-resources/pull/50
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/50
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/50/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/50/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/50/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/statuses/42e542df379066bf22cac210cd92141f08f37a7c
                                        )

                                )

                            [merged] =>
                            [mergeable] =>
                            [mergeable_state] => unknown
                            [merged_by] =>
                            [comments] => 0
                            [review_comments] => 0
                            [commits] => 1
                            [additions] => 24
                            [deletions] => 25
                            [changed_files] => 1
                        )

                )

            [public] => 1
            [created_at] => 2014-12-02T11:34:29Z
            [org] => Array
                (
                    [id] => 916372
                    [login] => neo4j-contrib
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neo4j-contrib
                    [avatar_url] => https://avatars.githubusercontent.com/u/916372?
                )

        )

    [143] => Array
        (
            [id] => 2438741721
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 27306229
                    [name] => ikwattro/developer-resources
                    [url] => https://api.github.com/repos/ikwattro/developer-resources
                )

            [payload] => Array
                (
                    [push_id] => 515245259
                    [size] => 13
                    [distinct_size] => 1
                    [ref] => refs/heads/phpdoc
                    [head] => 42e542df379066bf22cac210cd92141f08f37a7c
                    [before] => dad534c64b06058903470d8ee29ae523f2b94e4b
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => ca7b8ecf214d233927746157abce5c929b93c179
                                    [author] => Array
                                        (
                                            [email] => gpierrick@timeblend.com
                                            [name] => Pierrick Ganon
                                        )

                                    [message] => dotnet web api endpoints solution
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/ca7b8ecf214d233927746157abce5c929b93c179
                                )

                            [1] => Array
                                (
                                    [sha] => 5d8baff0a245dce36eab1425f749e117c4553ef6
                                    [author] => Array
                                        (
                                            [email] => gpierrick@timeblend.com
                                            [name] => Pierrick Ganon
                                        )

                                    [message] => neo4jclient folder
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/5d8baff0a245dce36eab1425f749e117c4553ef6
                                )

                            [2] => Array
                                (
                                    [sha] => 844f9cb471ffb52dcae38e42391725fa2e96d7f2
                                    [author] => Array
                                        (
                                            [email] => cescala2@gmail.com
                                            [name] => whatSocks
                                        )

                                    [message] => Merge pull request #48 from ikwattro/phpdoc

improved php doc
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/844f9cb471ffb52dcae38e42391725fa2e96d7f2
                                )

                            [3] => Array
                                (
                                    [sha] => 063447ce95ed641c325ed176d3bd1ed9ca30c41c
                                    [author] => Array
                                        (
                                            [email] => cescala2@gmail.com
                                            [name] => whatSocks
                                        )

                                    [message] => edited php.adoc
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/063447ce95ed641c325ed176d3bd1ed9ca30c41c
                                )

                            [4] => Array
                                (
                                    [sha] => 6d71746740b8f283700866abc8f1a187e4ec542d
                                    [author] => Array
                                        (
                                            [email] => cescala2@gmail.com
                                            [name] => whatSocks
                                        )

                                    [message] => typo fix php.adoc
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/6d71746740b8f283700866abc8f1a187e4ec542d
                                )

                            [5] => Array
                                (
                                    [sha] => 71d12ba0f4d0d8e588e7e7dd83dd5df4ea5e28a8
                                    [author] => Array
                                        (
                                            [email] => cescala2@gmail.com
                                            [name] => whatSocks
                                        )

                                    [message] => capitalizing php.adoc
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/71d12ba0f4d0d8e588e7e7dd83dd5df4ea5e28a8
                                )

                            [6] => Array
                                (
                                    [sha] => 40f563613dc06f5b9804df2021b25a9b2f37a301
                                    [author] => Array
                                        (
                                            [email] => gpierrick@timeblend.com
                                            [name] => Pierrick Ganon
                                        )

                                    [message] => added readme.adoc
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/40f563613dc06f5b9804df2021b25a9b2f37a301
                                )

                            [7] => Array
                                (
                                    [sha] => cd04c970c6f24bc50fd5ff83b612201ac13ddf84
                                    [author] => Array
                                        (
                                            [email] => cescala2@gmail.com
                                            [name] => whatSocks
                                        )

                                    [message] => Merge pull request #49 from whatSocks/gh-pages

1 sentence per line and a few grammar fixes
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/cd04c970c6f24bc50fd5ff83b612201ac13ddf84
                                )

                            [8] => Array
                                (
                                    [sha] => 8ef0e5be5fdf2d8d2d2ef042e1742ce54abf25e2
                                    [author] => Array
                                        (
                                            [email] => gpierrick@timeblend.com
                                            [name] => Pierrick Ganon
                                        )

                                    [message] => removed publish profiles
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/8ef0e5be5fdf2d8d2d2ef042e1742ce54abf25e2
                                )

                            [9] => Array
                                (
                                    [sha] => afcc7770f2accf90b9c70f47520c3f02cf63aae9
                                    [author] => Array
                                        (
                                            [email] => github@jexp.de
                                            [name] => Michael Hunger
                                        )

                                    [message] => Merge pull request #46 from gpierrick/gh-pages

dotnet web api endpoints solution
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/afcc7770f2accf90b9c70f47520c3f02cf63aae9
                                )

                            [10] => Array
                                (
                                    [sha] => 32a7c6298dd7e69590fc896e71d45f2040bb7c1e
                                    [author] => Array
                                        (
                                            [email] => github@jexp.de
                                            [name] => Michael Hunger
                                        )

                                    [message] => fixed cypher statement in recommendation engine
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/32a7c6298dd7e69590fc896e71d45f2040bb7c1e
                                )

                            [11] => Array
                                (
                                    [sha] => ad8446a824cbe9decbf64c541510dfe85d90fa71
                                    [author] => Array
                                        (
                                            [email] => github@jexp.de
                                            [name] => Michael Hunger
                                        )

                                    [message] => first draft guide-import-csv
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/ad8446a824cbe9decbf64c541510dfe85d90fa71
                                )

                            [12] => Array
                                (
                                    [sha] => 42e542df379066bf22cac210cd92141f08f37a7c
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => adapted phpdoc to @jexp suggestions
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/42e542df379066bf22cac210cd92141f08f37a7c
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-12-02T11:33:50Z
        )

    [144] => Array
        (
            [id] => 2438732918
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 27306229
                    [name] => ikwattro/developer-resources
                    [url] => https://api.github.com/repos/ikwattro/developer-resources
                )

            [payload] => Array
                (
                    [push_id] => 515241616
                    [size] => 16
                    [distinct_size] => 12
                    [ref] => refs/heads/gh-pages
                    [head] => ad8446a824cbe9decbf64c541510dfe85d90fa71
                    [before] => ca79aaae7251b32407002f293c07544c36f45ddc
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => ca7b8ecf214d233927746157abce5c929b93c179
                                    [author] => Array
                                        (
                                            [email] => gpierrick@timeblend.com
                                            [name] => Pierrick Ganon
                                        )

                                    [message] => dotnet web api endpoints solution
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/ca7b8ecf214d233927746157abce5c929b93c179
                                )

                            [1] => Array
                                (
                                    [sha] => 5d8baff0a245dce36eab1425f749e117c4553ef6
                                    [author] => Array
                                        (
                                            [email] => gpierrick@timeblend.com
                                            [name] => Pierrick Ganon
                                        )

                                    [message] => neo4jclient folder
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/5d8baff0a245dce36eab1425f749e117c4553ef6
                                )

                            [2] => Array
                                (
                                    [sha] => fea505a5760688c644944d7fa2707d9758ae1889
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => improved php doc
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/fea505a5760688c644944d7fa2707d9758ae1889
                                )

                            [3] => Array
                                (
                                    [sha] => 5ed0a4d9ec1b74bef8401c5976cd85795b63a46c
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed typo
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/5ed0a4d9ec1b74bef8401c5976cd85795b63a46c
                                )

                            [4] => Array
                                (
                                    [sha] => b022e678366fcd01b640be9b264a837c9fdf9801
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => splitted lines
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/b022e678366fcd01b640be9b264a837c9fdf9801
                                )

                            [5] => Array
                                (
                                    [sha] => dad534c64b06058903470d8ee29ae523f2b94e4b
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => removed spaces before punct. and minimized cuttering
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/dad534c64b06058903470d8ee29ae523f2b94e4b
                                )

                            [6] => Array
                                (
                                    [sha] => 844f9cb471ffb52dcae38e42391725fa2e96d7f2
                                    [author] => Array
                                        (
                                            [email] => cescala2@gmail.com
                                            [name] => whatSocks
                                        )

                                    [message] => Merge pull request #48 from ikwattro/phpdoc

improved php doc
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/844f9cb471ffb52dcae38e42391725fa2e96d7f2
                                )

                            [7] => Array
                                (
                                    [sha] => 063447ce95ed641c325ed176d3bd1ed9ca30c41c
                                    [author] => Array
                                        (
                                            [email] => cescala2@gmail.com
                                            [name] => whatSocks
                                        )

                                    [message] => edited php.adoc
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/063447ce95ed641c325ed176d3bd1ed9ca30c41c
                                )

                            [8] => Array
                                (
                                    [sha] => 6d71746740b8f283700866abc8f1a187e4ec542d
                                    [author] => Array
                                        (
                                            [email] => cescala2@gmail.com
                                            [name] => whatSocks
                                        )

                                    [message] => typo fix php.adoc
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/6d71746740b8f283700866abc8f1a187e4ec542d
                                )

                            [9] => Array
                                (
                                    [sha] => 71d12ba0f4d0d8e588e7e7dd83dd5df4ea5e28a8
                                    [author] => Array
                                        (
                                            [email] => cescala2@gmail.com
                                            [name] => whatSocks
                                        )

                                    [message] => capitalizing php.adoc
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/71d12ba0f4d0d8e588e7e7dd83dd5df4ea5e28a8
                                )

                            [10] => Array
                                (
                                    [sha] => 40f563613dc06f5b9804df2021b25a9b2f37a301
                                    [author] => Array
                                        (
                                            [email] => gpierrick@timeblend.com
                                            [name] => Pierrick Ganon
                                        )

                                    [message] => added readme.adoc
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/40f563613dc06f5b9804df2021b25a9b2f37a301
                                )

                            [11] => Array
                                (
                                    [sha] => cd04c970c6f24bc50fd5ff83b612201ac13ddf84
                                    [author] => Array
                                        (
                                            [email] => cescala2@gmail.com
                                            [name] => whatSocks
                                        )

                                    [message] => Merge pull request #49 from whatSocks/gh-pages

1 sentence per line and a few grammar fixes
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/cd04c970c6f24bc50fd5ff83b612201ac13ddf84
                                )

                            [12] => Array
                                (
                                    [sha] => 8ef0e5be5fdf2d8d2d2ef042e1742ce54abf25e2
                                    [author] => Array
                                        (
                                            [email] => gpierrick@timeblend.com
                                            [name] => Pierrick Ganon
                                        )

                                    [message] => removed publish profiles
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/8ef0e5be5fdf2d8d2d2ef042e1742ce54abf25e2
                                )

                            [13] => Array
                                (
                                    [sha] => afcc7770f2accf90b9c70f47520c3f02cf63aae9
                                    [author] => Array
                                        (
                                            [email] => github@jexp.de
                                            [name] => Michael Hunger
                                        )

                                    [message] => Merge pull request #46 from gpierrick/gh-pages

dotnet web api endpoints solution
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/afcc7770f2accf90b9c70f47520c3f02cf63aae9
                                )

                            [14] => Array
                                (
                                    [sha] => 32a7c6298dd7e69590fc896e71d45f2040bb7c1e
                                    [author] => Array
                                        (
                                            [email] => github@jexp.de
                                            [name] => Michael Hunger
                                        )

                                    [message] => fixed cypher statement in recommendation engine
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/32a7c6298dd7e69590fc896e71d45f2040bb7c1e
                                )

                            [15] => Array
                                (
                                    [sha] => ad8446a824cbe9decbf64c541510dfe85d90fa71
                                    [author] => Array
                                        (
                                            [email] => github@jexp.de
                                            [name] => Michael Hunger
                                        )

                                    [message] => first draft guide-import-csv
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/ad8446a824cbe9decbf64c541510dfe85d90fa71
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-12-02T11:28:47Z
        )

    [145] => Array
        (
            [id] => 2438724245
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 23597997
                    [name] => neo4j-contrib/developer-resources
                    [url] => https://api.github.com/repos/neo4j-contrib/developer-resources
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48
                            [labels_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48/labels{/name}
                            [comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48/comments
                            [events_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48/events
                            [html_url] => https://github.com/neo4j-contrib/developer-resources/pull/48
                            [id] => 50463583
                            [number] => 48
                            [title] => improved php doc
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => closed
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 9
                            [created_at] => 2014-11-30T17:08:25Z
                            [updated_at] => 2014-12-02T11:24:01Z
                            [closed_at] => 2014-11-30T21:11:18Z
                            [pull_request] => Array
                                (
                                    [url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/48
                                    [html_url] => https://github.com/neo4j-contrib/developer-resources/pull/48
                                    [diff_url] => https://github.com/neo4j-contrib/developer-resources/pull/48.diff
                                    [patch_url] => https://github.com/neo4j-contrib/developer-resources/pull/48.patch
                                )

                            [body] => * added php image
* modified intro message
* added missing lib
* split drivers between environment usage
* added apps links using php and neo4j
                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/comments/65216448
                            [html_url] => https://github.com/neo4j-contrib/developer-resources/pull/48#issuecomment-65216448
                            [issue_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48
                            [id] => 65216448
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2014-12-02T11:24:01Z
                            [updated_at] => 2014-12-02T11:24:01Z
                            [body] => Yes I'll rebase on the gh-pages branch and open a new PR
                        )

                )

            [public] => 1
            [created_at] => 2014-12-02T11:24:01Z
            [org] => Array
                (
                    [id] => 916372
                    [login] => neo4j-contrib
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neo4j-contrib
                    [avatar_url] => https://avatars.githubusercontent.com/u/916372?
                )

        )

    [146] => Array
        (
            [id] => 2438720408
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 515236314
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 2675ea9ead582818600e07b0188381e62d969bc8
                    [before] => dedbe517dfee90398750603bc01ec6359f581767
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 2675ea9ead582818600e07b0188381e62d969bc8
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => modified benchmarks to add multiple statements in one tx
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/2675ea9ead582818600e07b0188381e62d969bc8
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-12-02T11:21:52Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [147] => Array
        (
            [id] => 2437891848
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [ref] => 0.5.4
                    [ref_type] => tag
                    [master_branch] => master
                    [description] => Easy generation of dummy Neo4j graphs with PHP
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-12-02T01:09:37Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [148] => Array
        (
            [id] => 2437891552
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 514889038
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 42fbf0ea6a1921f1eaba419fd15b2c31c22c3a45
                    [before] => 3b282105617f85a43c7ef527a5ff741d0566866c
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 42fbf0ea6a1921f1eaba419fd15b2c31c22c3a45
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed call_user_func_array to pass array args for randomElement|s
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/42fbf0ea6a1921f1eaba419fd15b2c31c22c3a45
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-12-02T01:09:24Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [149] => Array
        (
            [id] => 2437861437
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 7453871
                    [name] => licson0729/libSSE-php
                    [url] => https://api.github.com/repos/licson0729/libSSE-php
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-12-02T00:48:38Z
        )

    [150] => Array
        (
            [id] => 2436566788
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [ref] => 0.5.3
                    [ref_type] => tag
                    [master_branch] => master
                    [description] => Easy generation of dummy Neo4j graphs with PHP
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-12-01T14:53:30Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [151] => Array
        (
            [id] => 2436565836
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 514341034
                    [size] => 2
                    [distinct_size] => 0
                    [ref] => refs/heads/master
                    [head] => 3b282105617f85a43c7ef527a5ff741d0566866c
                    [before] => beff0d30d7a661174a10e9fc10a7592439e7b0c7
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 2eee6bd244a973d941c58b41eac0bb7056be1fde
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed propertyProcessor when faker method wants array as first argument
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/2eee6bd244a973d941c58b41eac0bb7056be1fde
                                )

                            [1] => Array
                                (
                                    [sha] => 3b282105617f85a43c7ef527a5ff741d0566866c
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => Merge branch 'master' of https://github.com/neoxygen/neo4j-neogen
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/3b282105617f85a43c7ef527a5ff741d0566866c
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-12-01T14:53:05Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [152] => Array
        (
            [id] => 2436563765
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [ref] => rik
                    [ref_type] => branch
                    [master_branch] => master
                    [description] => Easy generation of dummy Neo4j graphs with PHP
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-12-01T14:52:13Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [153] => Array
        (
            [id] => 2435502159
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 27357143
                    [name] => ikwattro/social-network
                    [url] => https://api.github.com/repos/ikwattro/social-network
                )

            [payload] => Array
                (
                    [ref] => master
                    [ref_type] => branch
                    [master_branch] => master
                    [description] => Demo Social Network application using Neo4j and PHP
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-12-01T01:28:22Z
        )

    [154] => Array
        (
            [id] => 2435501685
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 27357143
                    [name] => ikwattro/social-network
                    [url] => https://api.github.com/repos/ikwattro/social-network
                )

            [payload] => Array
                (
                    [ref] =>
                    [ref_type] => repository
                    [master_branch] => master
                    [description] => Demo Social Network application using Neo4j and PHP
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-12-01T01:27:46Z
        )

    [155] => Array
        (
            [id] => 2435405294
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 513830222
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => dedbe517dfee90398750603bc01ec6359f581767
                    [before] => bc0a5e26174160a1ca82ef0159b46d533f72e237
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => dedbe517dfee90398750603bc01ec6359f581767
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added benchmarks
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/dedbe517dfee90398750603bc01ec6359f581767
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-30T23:15:24Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [156] => Array
        (
            [id] => 2435338779
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [ref] => 2.0.2
                    [ref_type] => tag
                    [master_branch] => master
                    [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-11-30T21:45:54Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [157] => Array
        (
            [id] => 2435338588
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 513798328
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => bc0a5e26174160a1ca82ef0159b46d533f72e237
                    [before] => 1844f64613cf549badd3bfae2a83fdf50929e0e6
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => bc0a5e26174160a1ca82ef0159b46d533f72e237
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => removed references
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/bc0a5e26174160a1ca82ef0159b46d533f72e237
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-30T21:45:40Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [158] => Array
        (
            [id] => 2435323111
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 20900991
                    [name] => poledev/Katas
                    [url] => https://api.github.com/repos/poledev/Katas
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-11-30T21:24:44Z
            [org] => Array
                (
                    [id] => 6369679
                    [login] => poledev
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/poledev
                    [avatar_url] => https://avatars.githubusercontent.com/u/6369679?
                )

        )

    [159] => Array
        (
            [id] => 2435313677
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 23597997
                    [name] => neo4j-contrib/developer-resources
                    [url] => https://api.github.com/repos/neo4j-contrib/developer-resources
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48
                            [labels_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48/labels{/name}
                            [comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48/comments
                            [events_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48/events
                            [html_url] => https://github.com/neo4j-contrib/developer-resources/pull/48
                            [id] => 50463583
                            [number] => 48
                            [title] => improved php doc
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => closed
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 7
                            [created_at] => 2014-11-30T17:08:25Z
                            [updated_at] => 2014-11-30T21:11:37Z
                            [closed_at] => 2014-11-30T21:11:18Z
                            [pull_request] => Array
                                (
                                    [url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/48
                                    [html_url] => https://github.com/neo4j-contrib/developer-resources/pull/48
                                    [diff_url] => https://github.com/neo4j-contrib/developer-resources/pull/48.diff
                                    [patch_url] => https://github.com/neo4j-contrib/developer-resources/pull/48.patch
                                )

                            [body] => * added php image
* modified intro message
* added missing lib
* split drivers between environment usage
* added apps links using php and neo4j
                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/comments/65000482
                            [html_url] => https://github.com/neo4j-contrib/developer-resources/pull/48#issuecomment-65000482
                            [issue_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48
                            [id] => 65000482
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2014-11-30T21:11:37Z
                            [updated_at] => 2014-11-30T21:11:37Z
                            [body] => Ok cool thanks ;-)
                        )

                )

            [public] => 1
            [created_at] => 2014-11-30T21:11:37Z
            [org] => Array
                (
                    [id] => 916372
                    [login] => neo4j-contrib
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neo4j-contrib
                    [avatar_url] => https://avatars.githubusercontent.com/u/916372?
                )

        )

    [160] => Array
        (
            [id] => 2435307444
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 23597997
                    [name] => neo4j-contrib/developer-resources
                    [url] => https://api.github.com/repos/neo4j-contrib/developer-resources
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48
                            [labels_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48/labels{/name}
                            [comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48/comments
                            [events_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48/events
                            [html_url] => https://github.com/neo4j-contrib/developer-resources/pull/48
                            [id] => 50463583
                            [number] => 48
                            [title] => improved php doc
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => open
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 5
                            [created_at] => 2014-11-30T17:08:25Z
                            [updated_at] => 2014-11-30T21:03:27Z
                            [closed_at] =>
                            [pull_request] => Array
                                (
                                    [url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/48
                                    [html_url] => https://github.com/neo4j-contrib/developer-resources/pull/48
                                    [diff_url] => https://github.com/neo4j-contrib/developer-resources/pull/48.diff
                                    [patch_url] => https://github.com/neo4j-contrib/developer-resources/pull/48.patch
                                )

                            [body] => * added php image
* modified intro message
* added missing lib
* split drivers between environment usage
* added apps links using php and neo4j
                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/comments/65000204
                            [html_url] => https://github.com/neo4j-contrib/developer-resources/pull/48#issuecomment-65000204
                            [issue_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48
                            [id] => 65000204
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2014-11-30T21:03:27Z
                            [updated_at] => 2014-11-30T21:03:27Z
                            [body] => better ?
                        )

                )

            [public] => 1
            [created_at] => 2014-11-30T21:03:30Z
            [org] => Array
                (
                    [id] => 916372
                    [login] => neo4j-contrib
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neo4j-contrib
                    [avatar_url] => https://avatars.githubusercontent.com/u/916372?
                )

        )

    [161] => Array
        (
            [id] => 2435307043
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 27306229
                    [name] => ikwattro/developer-resources
                    [url] => https://api.github.com/repos/ikwattro/developer-resources
                )

            [payload] => Array
                (
                    [push_id] => 513782686
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/phpdoc
                    [head] => dad534c64b06058903470d8ee29ae523f2b94e4b
                    [before] => b022e678366fcd01b640be9b264a837c9fdf9801
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => dad534c64b06058903470d8ee29ae523f2b94e4b
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => removed spaces before punct. and minimized cuttering
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/dad534c64b06058903470d8ee29ae523f2b94e4b
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-30T21:02:51Z
        )

    [162] => Array
        (
            [id] => 2435305904
            [type] => PullRequestReviewCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 23597997
                    [name] => neo4j-contrib/developer-resources
                    [url] => https://api.github.com/repos/neo4j-contrib/developer-resources
                )

            [payload] => Array
                (
                    [action] => created
                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/comments/21063387
                            [id] => 21063387
                            [diff_hunk] => @@ -25,20 +25,31 @@ toc::[]
 // tag::intro[]
 === Neo4j for PHP Developers

-image::http://dev.assets.neo4j.com.s3.amazonaws.com/wp-content/uploads/2014/04/php-2.png[]
+image::http://i.imgur.com/eTLVfHM.png[]

-Drivers for the different PHP stacks enable you to use Neo4j from your familiar environment.
+You're a PHP developer and want to start with Neo4j ? You're on the right place !
+
+Whether you're using frameworks like Symfony and Laravel or you're developing without frameworks, you'll find an
+adequate library for you're use case.
                            [path] => language-guides/php/php.adoc
                            [position] => 11
                            [original_position] => 11
                            [commit_id] => b022e678366fcd01b640be9b264a837c9fdf9801
                            [original_commit_id] => b022e678366fcd01b640be9b264a837c9fdf9801
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] => yes same line and yes your use case :)
                            [created_at] => 2014-11-30T21:01:16Z
                            [updated_at] => 2014-11-30T21:01:16Z
                            [html_url] => https://github.com/neo4j-contrib/developer-resources/pull/48#discussion_r21063387
                            [pull_request_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/48
                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/comments/21063387
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neo4j-contrib/developer-resources/pull/48#discussion_r21063387
                                        )

                                    [pull_request] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/48
                                        )

                                )

                        )

                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/48
                            [id] => 25236967
                            [html_url] => https://github.com/neo4j-contrib/developer-resources/pull/48
                            [diff_url] => https://github.com/neo4j-contrib/developer-resources/pull/48.diff
                            [patch_url] => https://github.com/neo4j-contrib/developer-resources/pull/48.patch
                            [issue_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48
                            [number] => 48
                            [state] => open
                            [locked] =>
                            [title] => improved php doc
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] => * added php image
* modified intro message
* added missing lib
* split drivers between environment usage
* added apps links using php and neo4j
                            [created_at] => 2014-11-30T17:08:25Z
                            [updated_at] => 2014-11-30T21:01:16Z
                            [closed_at] =>
                            [merged_at] =>
                            [merge_commit_sha] => 6883c4861531a7b08a49188a69f679dd50cdf1da
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/48/commits
                            [review_comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/48/comments
                            [review_comment_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48/comments
                            [statuses_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/statuses/b022e678366fcd01b640be9b264a837c9fdf9801
                            [head] => Array
                                (
                                    [label] => ikwattro:phpdoc
                                    [ref] => phpdoc
                                    [sha] => b022e678366fcd01b640be9b264a837c9fdf9801
                                    [user] => Array
                                        (
                                            [login] => ikwattro
                                            [id] => 1222009
                                            [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/ikwattro
                                            [html_url] => https://github.com/ikwattro
                                            [followers_url] => https://api.github.com/users/ikwattro/followers
                                            [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                            [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                            [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                            [repos_url] => https://api.github.com/users/ikwattro/repos
                                            [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                            [type] => User
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 27306229
                                            [name] => developer-resources
                                            [full_name] => ikwattro/developer-resources
                                            [owner] => Array
                                                (
                                                    [login] => ikwattro
                                                    [id] => 1222009
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/ikwattro
                                                    [html_url] => https://github.com/ikwattro
                                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                                    [type] => User
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/ikwattro/developer-resources
                                            [description] => neo4j developer resources
                                            [fork] => 1
                                            [url] => https://api.github.com/repos/ikwattro/developer-resources
                                            [forks_url] => https://api.github.com/repos/ikwattro/developer-resources/forks
                                            [keys_url] => https://api.github.com/repos/ikwattro/developer-resources/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/ikwattro/developer-resources/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/ikwattro/developer-resources/teams
                                            [hooks_url] => https://api.github.com/repos/ikwattro/developer-resources/hooks
                                            [issue_events_url] => https://api.github.com/repos/ikwattro/developer-resources/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/ikwattro/developer-resources/events
                                            [assignees_url] => https://api.github.com/repos/ikwattro/developer-resources/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/ikwattro/developer-resources/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/ikwattro/developer-resources/tags
                                            [blobs_url] => https://api.github.com/repos/ikwattro/developer-resources/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/ikwattro/developer-resources/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/ikwattro/developer-resources/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/ikwattro/developer-resources/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/ikwattro/developer-resources/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/ikwattro/developer-resources/languages
                                            [stargazers_url] => https://api.github.com/repos/ikwattro/developer-resources/stargazers
                                            [contributors_url] => https://api.github.com/repos/ikwattro/developer-resources/contributors
                                            [subscribers_url] => https://api.github.com/repos/ikwattro/developer-resources/subscribers
                                            [subscription_url] => https://api.github.com/repos/ikwattro/developer-resources/subscription
                                            [commits_url] => https://api.github.com/repos/ikwattro/developer-resources/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/ikwattro/developer-resources/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/ikwattro/developer-resources/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/ikwattro/developer-resources/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/ikwattro/developer-resources/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/ikwattro/developer-resources/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/ikwattro/developer-resources/merges
                                            [archive_url] => https://api.github.com/repos/ikwattro/developer-resources/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/ikwattro/developer-resources/downloads
                                            [issues_url] => https://api.github.com/repos/ikwattro/developer-resources/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/ikwattro/developer-resources/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/ikwattro/developer-resources/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/ikwattro/developer-resources/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/ikwattro/developer-resources/labels{/name}
                                            [releases_url] => https://api.github.com/repos/ikwattro/developer-resources/releases{/id}
                                            [created_at] => 2014-11-29T15:31:08Z
                                            [updated_at] => 2014-11-30T15:23:15Z
                                            [pushed_at] => 2014-11-30T20:34:14Z
                                            [git_url] => git://github.com/ikwattro/developer-resources.git
                                            [ssh_url] => git@github.com:ikwattro/developer-resources.git
                                            [clone_url] => https://github.com/ikwattro/developer-resources.git
                                            [svn_url] => https://github.com/ikwattro/developer-resources
                                            [homepage] =>
                                            [size] => 12794
                                            [stargazers_count] => 0
                                            [watchers_count] => 0
                                            [language] => Python
                                            [has_issues] =>
                                            [has_downloads] => 1
                                            [has_wiki] =>
                                            [has_pages] => 1
                                            [forks_count] => 0
                                            [mirror_url] =>
                                            [open_issues_count] => 0
                                            [forks] => 0
                                            [open_issues] => 0
                                            [watchers] => 0
                                            [default_branch] => gh-pages
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => neo4j-contrib:gh-pages
                                    [ref] => gh-pages
                                    [sha] => ca79aaae7251b32407002f293c07544c36f45ddc
                                    [user] => Array
                                        (
                                            [login] => neo4j-contrib
                                            [id] => 916372
                                            [avatar_url] => https://avatars.githubusercontent.com/u/916372?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neo4j-contrib
                                            [html_url] => https://github.com/neo4j-contrib
                                            [followers_url] => https://api.github.com/users/neo4j-contrib/followers
                                            [following_url] => https://api.github.com/users/neo4j-contrib/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neo4j-contrib/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neo4j-contrib/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neo4j-contrib/subscriptions
                                            [organizations_url] => https://api.github.com/users/neo4j-contrib/orgs
                                            [repos_url] => https://api.github.com/users/neo4j-contrib/repos
                                            [events_url] => https://api.github.com/users/neo4j-contrib/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neo4j-contrib/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 23597997
                                            [name] => developer-resources
                                            [full_name] => neo4j-contrib/developer-resources
                                            [owner] => Array
                                                (
                                                    [login] => neo4j-contrib
                                                    [id] => 916372
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/916372?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neo4j-contrib
                                                    [html_url] => https://github.com/neo4j-contrib
                                                    [followers_url] => https://api.github.com/users/neo4j-contrib/followers
                                                    [following_url] => https://api.github.com/users/neo4j-contrib/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neo4j-contrib/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neo4j-contrib/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neo4j-contrib/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neo4j-contrib/orgs
                                                    [repos_url] => https://api.github.com/users/neo4j-contrib/repos
                                                    [events_url] => https://api.github.com/users/neo4j-contrib/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neo4j-contrib/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neo4j-contrib/developer-resources
                                            [description] => neo4j developer resources
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources
                                            [forks_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/forks
                                            [keys_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/teams
                                            [hooks_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/hooks
                                            [issue_events_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/events
                                            [assignees_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/tags
                                            [blobs_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/languages
                                            [stargazers_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/stargazers
                                            [contributors_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/contributors
                                            [subscribers_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/subscribers
                                            [subscription_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/subscription
                                            [commits_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/merges
                                            [archive_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/downloads
                                            [issues_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/releases{/id}
                                            [created_at] => 2014-09-02T22:33:24Z
                                            [updated_at] => 2014-11-30T02:50:10Z
                                            [pushed_at] => 2014-11-30T02:50:09Z
                                            [git_url] => git://github.com/neo4j-contrib/developer-resources.git
                                            [ssh_url] => git@github.com:neo4j-contrib/developer-resources.git
                                            [clone_url] => https://github.com/neo4j-contrib/developer-resources.git
                                            [svn_url] => https://github.com/neo4j-contrib/developer-resources
                                            [homepage] =>
                                            [size] => 12794
                                            [stargazers_count] => 21
                                            [watchers_count] => 21
                                            [language] => Python
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] =>
                                            [has_pages] => 1
                                            [forks_count] => 44
                                            [mirror_url] =>
                                            [open_issues_count] => 8
                                            [forks] => 44
                                            [open_issues] => 8
                                            [watchers] => 21
                                            [default_branch] => gh-pages
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/48
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neo4j-contrib/developer-resources/pull/48
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/48/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/48/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/statuses/b022e678366fcd01b640be9b264a837c9fdf9801
                                        )

                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-30T21:01:16Z
            [org] => Array
                (
                    [id] => 916372
                    [login] => neo4j-contrib
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neo4j-contrib
                    [avatar_url] => https://avatars.githubusercontent.com/u/916372?
                )

        )

    [163] => Array
        (
            [id] => 2435302099
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 23597997
                    [name] => neo4j-contrib/developer-resources
                    [url] => https://api.github.com/repos/neo4j-contrib/developer-resources
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48
                            [labels_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48/labels{/name}
                            [comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48/comments
                            [events_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48/events
                            [html_url] => https://github.com/neo4j-contrib/developer-resources/pull/48
                            [id] => 50463583
                            [number] => 48
                            [title] => improved php doc
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => open
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 4
                            [created_at] => 2014-11-30T17:08:25Z
                            [updated_at] => 2014-11-30T20:56:09Z
                            [closed_at] =>
                            [pull_request] => Array
                                (
                                    [url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/48
                                    [html_url] => https://github.com/neo4j-contrib/developer-resources/pull/48
                                    [diff_url] => https://github.com/neo4j-contrib/developer-resources/pull/48.diff
                                    [patch_url] => https://github.com/neo4j-contrib/developer-resources/pull/48.patch
                                )

                            [body] => * added php image
* modified intro message
* added missing lib
* split drivers between environment usage
* added apps links using php and neo4j
                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/comments/64999930
                            [html_url] => https://github.com/neo4j-contrib/developer-resources/pull/48#issuecomment-64999930
                            [issue_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48
                            [id] => 64999930
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2014-11-30T20:56:09Z
                            [updated_at] => 2014-11-30T20:56:09Z
                            [body] => Ok I'll change the cutter limit to a bit less to not have a single word on a line ;-)
                        )

                )

            [public] => 1
            [created_at] => 2014-11-30T20:56:11Z
            [org] => Array
                (
                    [id] => 916372
                    [login] => neo4j-contrib
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neo4j-contrib
                    [avatar_url] => https://avatars.githubusercontent.com/u/916372?
                )

        )

    [164] => Array
        (
            [id] => 2435286951
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 23597997
                    [name] => neo4j-contrib/developer-resources
                    [url] => https://api.github.com/repos/neo4j-contrib/developer-resources
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48
                            [labels_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48/labels{/name}
                            [comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48/comments
                            [events_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48/events
                            [html_url] => https://github.com/neo4j-contrib/developer-resources/pull/48
                            [id] => 50463583
                            [number] => 48
                            [title] => improved php doc
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => open
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 2
                            [created_at] => 2014-11-30T17:08:25Z
                            [updated_at] => 2014-11-30T20:35:29Z
                            [closed_at] =>
                            [pull_request] => Array
                                (
                                    [url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/48
                                    [html_url] => https://github.com/neo4j-contrib/developer-resources/pull/48
                                    [diff_url] => https://github.com/neo4j-contrib/developer-resources/pull/48.diff
                                    [patch_url] => https://github.com/neo4j-contrib/developer-resources/pull/48.patch
                                )

                            [body] => * added php image
* modified intro message
* added missing lib
* split drivers between environment usage
* added apps links using php and neo4j
                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/comments/64999169
                            [html_url] => https://github.com/neo4j-contrib/developer-resources/pull/48#issuecomment-64999169
                            [issue_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48
                            [id] => 64999169
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2014-11-30T20:35:29Z
                            [updated_at] => 2014-11-30T20:35:29Z
                            [body] => Hey @whatSocks not sure if I fully understand what you ask, is the last commit what you wanted ?
                        )

                )

            [public] => 1
            [created_at] => 2014-11-30T20:35:30Z
            [org] => Array
                (
                    [id] => 916372
                    [login] => neo4j-contrib
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neo4j-contrib
                    [avatar_url] => https://avatars.githubusercontent.com/u/916372?
                )

        )

    [165] => Array
        (
            [id] => 2435286069
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 27306229
                    [name] => ikwattro/developer-resources
                    [url] => https://api.github.com/repos/ikwattro/developer-resources
                )

            [payload] => Array
                (
                    [push_id] => 513772404
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/phpdoc
                    [head] => b022e678366fcd01b640be9b264a837c9fdf9801
                    [before] => 5ed0a4d9ec1b74bef8401c5976cd85795b63a46c
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => b022e678366fcd01b640be9b264a837c9fdf9801
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => splitted lines
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/b022e678366fcd01b640be9b264a837c9fdf9801
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-30T20:34:14Z
        )

    [166] => Array
        (
            [id] => 2435150810
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 27306229
                    [name] => ikwattro/developer-resources
                    [url] => https://api.github.com/repos/ikwattro/developer-resources
                )

            [payload] => Array
                (
                    [push_id] => 513707258
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/phpdoc
                    [head] => 5ed0a4d9ec1b74bef8401c5976cd85795b63a46c
                    [before] => fea505a5760688c644944d7fa2707d9758ae1889
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 5ed0a4d9ec1b74bef8401c5976cd85795b63a46c
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed typo
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/5ed0a4d9ec1b74bef8401c5976cd85795b63a46c
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-30T17:09:03Z
        )

    [167] => Array
        (
            [id] => 2435150437
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 23597997
                    [name] => neo4j-contrib/developer-resources
                    [url] => https://api.github.com/repos/neo4j-contrib/developer-resources
                )

            [payload] => Array
                (
                    [action] => opened
                    [number] => 48
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/48
                            [id] => 25236967
                            [html_url] => https://github.com/neo4j-contrib/developer-resources/pull/48
                            [diff_url] => https://github.com/neo4j-contrib/developer-resources/pull/48.diff
                            [patch_url] => https://github.com/neo4j-contrib/developer-resources/pull/48.patch
                            [issue_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48
                            [number] => 48
                            [state] => open
                            [locked] =>
                            [title] => improved php doc
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] => * added php image
* modified intro message
* added missing lib
* split drivers between environment usage
* added apps links using php and neo4j
                            [created_at] => 2014-11-30T17:08:25Z
                            [updated_at] => 2014-11-30T17:08:25Z
                            [closed_at] =>
                            [merged_at] =>
                            [merge_commit_sha] =>
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/48/commits
                            [review_comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/48/comments
                            [review_comment_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48/comments
                            [statuses_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/statuses/fea505a5760688c644944d7fa2707d9758ae1889
                            [head] => Array
                                (
                                    [label] => ikwattro:phpdoc
                                    [ref] => phpdoc
                                    [sha] => fea505a5760688c644944d7fa2707d9758ae1889
                                    [user] => Array
                                        (
                                            [login] => ikwattro
                                            [id] => 1222009
                                            [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/ikwattro
                                            [html_url] => https://github.com/ikwattro
                                            [followers_url] => https://api.github.com/users/ikwattro/followers
                                            [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                            [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                            [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                            [repos_url] => https://api.github.com/users/ikwattro/repos
                                            [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                            [type] => User
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 27306229
                                            [name] => developer-resources
                                            [full_name] => ikwattro/developer-resources
                                            [owner] => Array
                                                (
                                                    [login] => ikwattro
                                                    [id] => 1222009
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/ikwattro
                                                    [html_url] => https://github.com/ikwattro
                                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                                    [type] => User
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/ikwattro/developer-resources
                                            [description] => neo4j developer resources
                                            [fork] => 1
                                            [url] => https://api.github.com/repos/ikwattro/developer-resources
                                            [forks_url] => https://api.github.com/repos/ikwattro/developer-resources/forks
                                            [keys_url] => https://api.github.com/repos/ikwattro/developer-resources/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/ikwattro/developer-resources/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/ikwattro/developer-resources/teams
                                            [hooks_url] => https://api.github.com/repos/ikwattro/developer-resources/hooks
                                            [issue_events_url] => https://api.github.com/repos/ikwattro/developer-resources/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/ikwattro/developer-resources/events
                                            [assignees_url] => https://api.github.com/repos/ikwattro/developer-resources/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/ikwattro/developer-resources/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/ikwattro/developer-resources/tags
                                            [blobs_url] => https://api.github.com/repos/ikwattro/developer-resources/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/ikwattro/developer-resources/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/ikwattro/developer-resources/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/ikwattro/developer-resources/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/ikwattro/developer-resources/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/ikwattro/developer-resources/languages
                                            [stargazers_url] => https://api.github.com/repos/ikwattro/developer-resources/stargazers
                                            [contributors_url] => https://api.github.com/repos/ikwattro/developer-resources/contributors
                                            [subscribers_url] => https://api.github.com/repos/ikwattro/developer-resources/subscribers
                                            [subscription_url] => https://api.github.com/repos/ikwattro/developer-resources/subscription
                                            [commits_url] => https://api.github.com/repos/ikwattro/developer-resources/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/ikwattro/developer-resources/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/ikwattro/developer-resources/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/ikwattro/developer-resources/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/ikwattro/developer-resources/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/ikwattro/developer-resources/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/ikwattro/developer-resources/merges
                                            [archive_url] => https://api.github.com/repos/ikwattro/developer-resources/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/ikwattro/developer-resources/downloads
                                            [issues_url] => https://api.github.com/repos/ikwattro/developer-resources/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/ikwattro/developer-resources/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/ikwattro/developer-resources/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/ikwattro/developer-resources/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/ikwattro/developer-resources/labels{/name}
                                            [releases_url] => https://api.github.com/repos/ikwattro/developer-resources/releases{/id}
                                            [created_at] => 2014-11-29T15:31:08Z
                                            [updated_at] => 2014-11-30T15:23:15Z
                                            [pushed_at] => 2014-11-30T17:07:37Z
                                            [git_url] => git://github.com/ikwattro/developer-resources.git
                                            [ssh_url] => git@github.com:ikwattro/developer-resources.git
                                            [clone_url] => https://github.com/ikwattro/developer-resources.git
                                            [svn_url] => https://github.com/ikwattro/developer-resources
                                            [homepage] =>
                                            [size] => 12794
                                            [stargazers_count] => 0
                                            [watchers_count] => 0
                                            [language] => Python
                                            [has_issues] =>
                                            [has_downloads] => 1
                                            [has_wiki] =>
                                            [has_pages] => 1
                                            [forks_count] => 0
                                            [mirror_url] =>
                                            [open_issues_count] => 0
                                            [forks] => 0
                                            [open_issues] => 0
                                            [watchers] => 0
                                            [default_branch] => gh-pages
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => neo4j-contrib:gh-pages
                                    [ref] => gh-pages
                                    [sha] => ca79aaae7251b32407002f293c07544c36f45ddc
                                    [user] => Array
                                        (
                                            [login] => neo4j-contrib
                                            [id] => 916372
                                            [avatar_url] => https://avatars.githubusercontent.com/u/916372?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neo4j-contrib
                                            [html_url] => https://github.com/neo4j-contrib
                                            [followers_url] => https://api.github.com/users/neo4j-contrib/followers
                                            [following_url] => https://api.github.com/users/neo4j-contrib/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neo4j-contrib/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neo4j-contrib/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neo4j-contrib/subscriptions
                                            [organizations_url] => https://api.github.com/users/neo4j-contrib/orgs
                                            [repos_url] => https://api.github.com/users/neo4j-contrib/repos
                                            [events_url] => https://api.github.com/users/neo4j-contrib/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neo4j-contrib/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 23597997
                                            [name] => developer-resources
                                            [full_name] => neo4j-contrib/developer-resources
                                            [owner] => Array
                                                (
                                                    [login] => neo4j-contrib
                                                    [id] => 916372
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/916372?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neo4j-contrib
                                                    [html_url] => https://github.com/neo4j-contrib
                                                    [followers_url] => https://api.github.com/users/neo4j-contrib/followers
                                                    [following_url] => https://api.github.com/users/neo4j-contrib/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neo4j-contrib/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neo4j-contrib/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neo4j-contrib/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neo4j-contrib/orgs
                                                    [repos_url] => https://api.github.com/users/neo4j-contrib/repos
                                                    [events_url] => https://api.github.com/users/neo4j-contrib/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neo4j-contrib/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neo4j-contrib/developer-resources
                                            [description] => neo4j developer resources
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources
                                            [forks_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/forks
                                            [keys_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/teams
                                            [hooks_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/hooks
                                            [issue_events_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/events
                                            [assignees_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/tags
                                            [blobs_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/languages
                                            [stargazers_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/stargazers
                                            [contributors_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/contributors
                                            [subscribers_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/subscribers
                                            [subscription_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/subscription
                                            [commits_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/merges
                                            [archive_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/downloads
                                            [issues_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/releases{/id}
                                            [created_at] => 2014-09-02T22:33:24Z
                                            [updated_at] => 2014-11-30T02:50:10Z
                                            [pushed_at] => 2014-11-30T02:50:09Z
                                            [git_url] => git://github.com/neo4j-contrib/developer-resources.git
                                            [ssh_url] => git@github.com:neo4j-contrib/developer-resources.git
                                            [clone_url] => https://github.com/neo4j-contrib/developer-resources.git
                                            [svn_url] => https://github.com/neo4j-contrib/developer-resources
                                            [homepage] =>
                                            [size] => 12794
                                            [stargazers_count] => 21
                                            [watchers_count] => 21
                                            [language] => Python
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] =>
                                            [has_pages] => 1
                                            [forks_count] => 44
                                            [mirror_url] =>
                                            [open_issues_count] => 8
                                            [forks] => 44
                                            [open_issues] => 8
                                            [watchers] => 21
                                            [default_branch] => gh-pages
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/48
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neo4j-contrib/developer-resources/pull/48
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/48/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/48/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/48/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/statuses/fea505a5760688c644944d7fa2707d9758ae1889
                                        )

                                )

                            [merged] =>
                            [mergeable] =>
                            [mergeable_state] => unknown
                            [merged_by] =>
                            [comments] => 0
                            [review_comments] => 0
                            [commits] => 1
                            [additions] => 80
                            [deletions] => 18
                            [changed_files] => 1
                        )

                )

            [public] => 1
            [created_at] => 2014-11-30T17:08:26Z
            [org] => Array
                (
                    [id] => 916372
                    [login] => neo4j-contrib
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neo4j-contrib
                    [avatar_url] => https://avatars.githubusercontent.com/u/916372?
                )

        )

    [168] => Array
        (
            [id] => 2435149897
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 27306229
                    [name] => ikwattro/developer-resources
                    [url] => https://api.github.com/repos/ikwattro/developer-resources
                )

            [payload] => Array
                (
                    [ref] => phpdoc
                    [ref_type] => branch
                    [master_branch] => gh-pages
                    [description] => neo4j developer resources
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-11-30T17:07:37Z
        )

    [169] => Array
        (
            [id] => 2435149490
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 23597997
                    [name] => neo4j-contrib/developer-resources
                    [url] => https://api.github.com/repos/neo4j-contrib/developer-resources
                )

            [payload] => Array
                (
                    [action] => closed
                    [number] => 47
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/47
                            [id] => 25236937
                            [html_url] => https://github.com/neo4j-contrib/developer-resources/pull/47
                            [diff_url] => https://github.com/neo4j-contrib/developer-resources/pull/47.diff
                            [patch_url] => https://github.com/neo4j-contrib/developer-resources/pull/47.patch
                            [issue_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/47
                            [number] => 47
                            [state] => closed
                            [locked] =>
                            [title] => Php doc improvements
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] => Some improvements to the php page,

* modified intro message
* Split drivers between usage
* added missing driver
* added two apps links using neo4j and php
* added intro image
                            [created_at] => 2014-11-30T17:06:24Z
                            [updated_at] => 2014-11-30T17:06:54Z
                            [closed_at] => 2014-11-30T17:06:54Z
                            [merged_at] =>
                            [merge_commit_sha] => 023aaa3cdade57eaf94a6e136a91a416a3d4e11e
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/47/commits
                            [review_comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/47/comments
                            [review_comment_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/47/comments
                            [statuses_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/statuses/ef6a658fff5dbc7b77cbdd4342caef2384776678
                            [head] => Array
                                (
                                    [label] => ikwattro:php
                                    [ref] => php
                                    [sha] => ef6a658fff5dbc7b77cbdd4342caef2384776678
                                    [user] => Array
                                        (
                                            [login] => ikwattro
                                            [id] => 1222009
                                            [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/ikwattro
                                            [html_url] => https://github.com/ikwattro
                                            [followers_url] => https://api.github.com/users/ikwattro/followers
                                            [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                            [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                            [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                            [repos_url] => https://api.github.com/users/ikwattro/repos
                                            [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                            [type] => User
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 27306229
                                            [name] => developer-resources
                                            [full_name] => ikwattro/developer-resources
                                            [owner] => Array
                                                (
                                                    [login] => ikwattro
                                                    [id] => 1222009
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/ikwattro
                                                    [html_url] => https://github.com/ikwattro
                                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                                    [type] => User
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/ikwattro/developer-resources
                                            [description] => neo4j developer resources
                                            [fork] => 1
                                            [url] => https://api.github.com/repos/ikwattro/developer-resources
                                            [forks_url] => https://api.github.com/repos/ikwattro/developer-resources/forks
                                            [keys_url] => https://api.github.com/repos/ikwattro/developer-resources/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/ikwattro/developer-resources/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/ikwattro/developer-resources/teams
                                            [hooks_url] => https://api.github.com/repos/ikwattro/developer-resources/hooks
                                            [issue_events_url] => https://api.github.com/repos/ikwattro/developer-resources/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/ikwattro/developer-resources/events
                                            [assignees_url] => https://api.github.com/repos/ikwattro/developer-resources/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/ikwattro/developer-resources/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/ikwattro/developer-resources/tags
                                            [blobs_url] => https://api.github.com/repos/ikwattro/developer-resources/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/ikwattro/developer-resources/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/ikwattro/developer-resources/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/ikwattro/developer-resources/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/ikwattro/developer-resources/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/ikwattro/developer-resources/languages
                                            [stargazers_url] => https://api.github.com/repos/ikwattro/developer-resources/stargazers
                                            [contributors_url] => https://api.github.com/repos/ikwattro/developer-resources/contributors
                                            [subscribers_url] => https://api.github.com/repos/ikwattro/developer-resources/subscribers
                                            [subscription_url] => https://api.github.com/repos/ikwattro/developer-resources/subscription
                                            [commits_url] => https://api.github.com/repos/ikwattro/developer-resources/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/ikwattro/developer-resources/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/ikwattro/developer-resources/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/ikwattro/developer-resources/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/ikwattro/developer-resources/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/ikwattro/developer-resources/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/ikwattro/developer-resources/merges
                                            [archive_url] => https://api.github.com/repos/ikwattro/developer-resources/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/ikwattro/developer-resources/downloads
                                            [issues_url] => https://api.github.com/repos/ikwattro/developer-resources/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/ikwattro/developer-resources/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/ikwattro/developer-resources/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/ikwattro/developer-resources/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/ikwattro/developer-resources/labels{/name}
                                            [releases_url] => https://api.github.com/repos/ikwattro/developer-resources/releases{/id}
                                            [created_at] => 2014-11-29T15:31:08Z
                                            [updated_at] => 2014-11-30T15:23:15Z
                                            [pushed_at] => 2014-11-30T17:05:10Z
                                            [git_url] => git://github.com/ikwattro/developer-resources.git
                                            [ssh_url] => git@github.com:ikwattro/developer-resources.git
                                            [clone_url] => https://github.com/ikwattro/developer-resources.git
                                            [svn_url] => https://github.com/ikwattro/developer-resources
                                            [homepage] =>
                                            [size] => 12794
                                            [stargazers_count] => 0
                                            [watchers_count] => 0
                                            [language] => Python
                                            [has_issues] =>
                                            [has_downloads] => 1
                                            [has_wiki] =>
                                            [has_pages] => 1
                                            [forks_count] => 0
                                            [mirror_url] =>
                                            [open_issues_count] => 0
                                            [forks] => 0
                                            [open_issues] => 0
                                            [watchers] => 0
                                            [default_branch] => gh-pages
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => neo4j-contrib:gh-pages
                                    [ref] => gh-pages
                                    [sha] => ca79aaae7251b32407002f293c07544c36f45ddc
                                    [user] => Array
                                        (
                                            [login] => neo4j-contrib
                                            [id] => 916372
                                            [avatar_url] => https://avatars.githubusercontent.com/u/916372?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neo4j-contrib
                                            [html_url] => https://github.com/neo4j-contrib
                                            [followers_url] => https://api.github.com/users/neo4j-contrib/followers
                                            [following_url] => https://api.github.com/users/neo4j-contrib/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neo4j-contrib/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neo4j-contrib/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neo4j-contrib/subscriptions
                                            [organizations_url] => https://api.github.com/users/neo4j-contrib/orgs
                                            [repos_url] => https://api.github.com/users/neo4j-contrib/repos
                                            [events_url] => https://api.github.com/users/neo4j-contrib/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neo4j-contrib/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 23597997
                                            [name] => developer-resources
                                            [full_name] => neo4j-contrib/developer-resources
                                            [owner] => Array
                                                (
                                                    [login] => neo4j-contrib
                                                    [id] => 916372
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/916372?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neo4j-contrib
                                                    [html_url] => https://github.com/neo4j-contrib
                                                    [followers_url] => https://api.github.com/users/neo4j-contrib/followers
                                                    [following_url] => https://api.github.com/users/neo4j-contrib/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neo4j-contrib/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neo4j-contrib/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neo4j-contrib/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neo4j-contrib/orgs
                                                    [repos_url] => https://api.github.com/users/neo4j-contrib/repos
                                                    [events_url] => https://api.github.com/users/neo4j-contrib/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neo4j-contrib/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neo4j-contrib/developer-resources
                                            [description] => neo4j developer resources
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources
                                            [forks_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/forks
                                            [keys_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/teams
                                            [hooks_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/hooks
                                            [issue_events_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/events
                                            [assignees_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/tags
                                            [blobs_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/languages
                                            [stargazers_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/stargazers
                                            [contributors_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/contributors
                                            [subscribers_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/subscribers
                                            [subscription_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/subscription
                                            [commits_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/merges
                                            [archive_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/downloads
                                            [issues_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/releases{/id}
                                            [created_at] => 2014-09-02T22:33:24Z
                                            [updated_at] => 2014-11-30T02:50:10Z
                                            [pushed_at] => 2014-11-30T02:50:09Z
                                            [git_url] => git://github.com/neo4j-contrib/developer-resources.git
                                            [ssh_url] => git@github.com:neo4j-contrib/developer-resources.git
                                            [clone_url] => https://github.com/neo4j-contrib/developer-resources.git
                                            [svn_url] => https://github.com/neo4j-contrib/developer-resources
                                            [homepage] =>
                                            [size] => 12794
                                            [stargazers_count] => 21
                                            [watchers_count] => 21
                                            [language] => Python
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] =>
                                            [has_pages] => 1
                                            [forks_count] => 44
                                            [mirror_url] =>
                                            [open_issues_count] => 7
                                            [forks] => 44
                                            [open_issues] => 7
                                            [watchers] => 21
                                            [default_branch] => gh-pages
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/47
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neo4j-contrib/developer-resources/pull/47
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/47
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/47/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/47/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/47/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/statuses/ef6a658fff5dbc7b77cbdd4342caef2384776678
                                        )

                                )

                            [merged] =>
                            [mergeable] => 1
                            [mergeable_state] => clean
                            [merged_by] =>
                            [comments] => 0
                            [review_comments] => 0
                            [commits] => 2
                            [additions] => 825
                            [deletions] => 151
                            [changed_files] => 2
                        )

                )

            [public] => 1
            [created_at] => 2014-11-30T17:06:54Z
            [org] => Array
                (
                    [id] => 916372
                    [login] => neo4j-contrib
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neo4j-contrib
                    [avatar_url] => https://avatars.githubusercontent.com/u/916372?
                )

        )

    [170] => Array
        (
            [id] => 2435149227
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 23597997
                    [name] => neo4j-contrib/developer-resources
                    [url] => https://api.github.com/repos/neo4j-contrib/developer-resources
                )

            [payload] => Array
                (
                    [action] => opened
                    [number] => 47
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/47
                            [id] => 25236937
                            [html_url] => https://github.com/neo4j-contrib/developer-resources/pull/47
                            [diff_url] => https://github.com/neo4j-contrib/developer-resources/pull/47.diff
                            [patch_url] => https://github.com/neo4j-contrib/developer-resources/pull/47.patch
                            [issue_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/47
                            [number] => 47
                            [state] => open
                            [locked] =>
                            [title] => Php doc improvements
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] => Some improvements to the php page,

* modified intro message
* Split drivers between usage
* added missing driver
* added two apps links using neo4j and php
* added intro image
                            [created_at] => 2014-11-30T17:06:24Z
                            [updated_at] => 2014-11-30T17:06:24Z
                            [closed_at] =>
                            [merged_at] =>
                            [merge_commit_sha] =>
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/47/commits
                            [review_comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/47/comments
                            [review_comment_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/47/comments
                            [statuses_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/statuses/ef6a658fff5dbc7b77cbdd4342caef2384776678
                            [head] => Array
                                (
                                    [label] => ikwattro:php
                                    [ref] => php
                                    [sha] => ef6a658fff5dbc7b77cbdd4342caef2384776678
                                    [user] => Array
                                        (
                                            [login] => ikwattro
                                            [id] => 1222009
                                            [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/ikwattro
                                            [html_url] => https://github.com/ikwattro
                                            [followers_url] => https://api.github.com/users/ikwattro/followers
                                            [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                            [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                            [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                            [repos_url] => https://api.github.com/users/ikwattro/repos
                                            [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                            [type] => User
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 27306229
                                            [name] => developer-resources
                                            [full_name] => ikwattro/developer-resources
                                            [owner] => Array
                                                (
                                                    [login] => ikwattro
                                                    [id] => 1222009
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/ikwattro
                                                    [html_url] => https://github.com/ikwattro
                                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                                    [type] => User
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/ikwattro/developer-resources
                                            [description] => neo4j developer resources
                                            [fork] => 1
                                            [url] => https://api.github.com/repos/ikwattro/developer-resources
                                            [forks_url] => https://api.github.com/repos/ikwattro/developer-resources/forks
                                            [keys_url] => https://api.github.com/repos/ikwattro/developer-resources/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/ikwattro/developer-resources/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/ikwattro/developer-resources/teams
                                            [hooks_url] => https://api.github.com/repos/ikwattro/developer-resources/hooks
                                            [issue_events_url] => https://api.github.com/repos/ikwattro/developer-resources/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/ikwattro/developer-resources/events
                                            [assignees_url] => https://api.github.com/repos/ikwattro/developer-resources/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/ikwattro/developer-resources/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/ikwattro/developer-resources/tags
                                            [blobs_url] => https://api.github.com/repos/ikwattro/developer-resources/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/ikwattro/developer-resources/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/ikwattro/developer-resources/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/ikwattro/developer-resources/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/ikwattro/developer-resources/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/ikwattro/developer-resources/languages
                                            [stargazers_url] => https://api.github.com/repos/ikwattro/developer-resources/stargazers
                                            [contributors_url] => https://api.github.com/repos/ikwattro/developer-resources/contributors
                                            [subscribers_url] => https://api.github.com/repos/ikwattro/developer-resources/subscribers
                                            [subscription_url] => https://api.github.com/repos/ikwattro/developer-resources/subscription
                                            [commits_url] => https://api.github.com/repos/ikwattro/developer-resources/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/ikwattro/developer-resources/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/ikwattro/developer-resources/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/ikwattro/developer-resources/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/ikwattro/developer-resources/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/ikwattro/developer-resources/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/ikwattro/developer-resources/merges
                                            [archive_url] => https://api.github.com/repos/ikwattro/developer-resources/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/ikwattro/developer-resources/downloads
                                            [issues_url] => https://api.github.com/repos/ikwattro/developer-resources/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/ikwattro/developer-resources/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/ikwattro/developer-resources/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/ikwattro/developer-resources/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/ikwattro/developer-resources/labels{/name}
                                            [releases_url] => https://api.github.com/repos/ikwattro/developer-resources/releases{/id}
                                            [created_at] => 2014-11-29T15:31:08Z
                                            [updated_at] => 2014-11-30T15:23:15Z
                                            [pushed_at] => 2014-11-30T17:05:10Z
                                            [git_url] => git://github.com/ikwattro/developer-resources.git
                                            [ssh_url] => git@github.com:ikwattro/developer-resources.git
                                            [clone_url] => https://github.com/ikwattro/developer-resources.git
                                            [svn_url] => https://github.com/ikwattro/developer-resources
                                            [homepage] =>
                                            [size] => 12794
                                            [stargazers_count] => 0
                                            [watchers_count] => 0
                                            [language] => Python
                                            [has_issues] =>
                                            [has_downloads] => 1
                                            [has_wiki] =>
                                            [has_pages] => 1
                                            [forks_count] => 0
                                            [mirror_url] =>
                                            [open_issues_count] => 0
                                            [forks] => 0
                                            [open_issues] => 0
                                            [watchers] => 0
                                            [default_branch] => gh-pages
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => neo4j-contrib:gh-pages
                                    [ref] => gh-pages
                                    [sha] => ca79aaae7251b32407002f293c07544c36f45ddc
                                    [user] => Array
                                        (
                                            [login] => neo4j-contrib
                                            [id] => 916372
                                            [avatar_url] => https://avatars.githubusercontent.com/u/916372?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neo4j-contrib
                                            [html_url] => https://github.com/neo4j-contrib
                                            [followers_url] => https://api.github.com/users/neo4j-contrib/followers
                                            [following_url] => https://api.github.com/users/neo4j-contrib/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neo4j-contrib/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neo4j-contrib/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neo4j-contrib/subscriptions
                                            [organizations_url] => https://api.github.com/users/neo4j-contrib/orgs
                                            [repos_url] => https://api.github.com/users/neo4j-contrib/repos
                                            [events_url] => https://api.github.com/users/neo4j-contrib/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neo4j-contrib/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 23597997
                                            [name] => developer-resources
                                            [full_name] => neo4j-contrib/developer-resources
                                            [owner] => Array
                                                (
                                                    [login] => neo4j-contrib
                                                    [id] => 916372
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/916372?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neo4j-contrib
                                                    [html_url] => https://github.com/neo4j-contrib
                                                    [followers_url] => https://api.github.com/users/neo4j-contrib/followers
                                                    [following_url] => https://api.github.com/users/neo4j-contrib/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neo4j-contrib/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neo4j-contrib/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neo4j-contrib/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neo4j-contrib/orgs
                                                    [repos_url] => https://api.github.com/users/neo4j-contrib/repos
                                                    [events_url] => https://api.github.com/users/neo4j-contrib/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neo4j-contrib/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neo4j-contrib/developer-resources
                                            [description] => neo4j developer resources
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources
                                            [forks_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/forks
                                            [keys_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/teams
                                            [hooks_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/hooks
                                            [issue_events_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/events
                                            [assignees_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/tags
                                            [blobs_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/languages
                                            [stargazers_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/stargazers
                                            [contributors_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/contributors
                                            [subscribers_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/subscribers
                                            [subscription_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/subscription
                                            [commits_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/merges
                                            [archive_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/downloads
                                            [issues_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/releases{/id}
                                            [created_at] => 2014-09-02T22:33:24Z
                                            [updated_at] => 2014-11-30T02:50:10Z
                                            [pushed_at] => 2014-11-30T02:50:09Z
                                            [git_url] => git://github.com/neo4j-contrib/developer-resources.git
                                            [ssh_url] => git@github.com:neo4j-contrib/developer-resources.git
                                            [clone_url] => https://github.com/neo4j-contrib/developer-resources.git
                                            [svn_url] => https://github.com/neo4j-contrib/developer-resources
                                            [homepage] =>
                                            [size] => 12794
                                            [stargazers_count] => 21
                                            [watchers_count] => 21
                                            [language] => Python
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] =>
                                            [has_pages] => 1
                                            [forks_count] => 44
                                            [mirror_url] =>
                                            [open_issues_count] => 8
                                            [forks] => 44
                                            [open_issues] => 8
                                            [watchers] => 21
                                            [default_branch] => gh-pages
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/47
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neo4j-contrib/developer-resources/pull/47
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/47
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/47/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/47/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/47/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/statuses/ef6a658fff5dbc7b77cbdd4342caef2384776678
                                        )

                                )

                            [merged] =>
                            [mergeable] =>
                            [mergeable_state] => unknown
                            [merged_by] =>
                            [comments] => 0
                            [review_comments] => 0
                            [commits] => 2
                            [additions] => 825
                            [deletions] => 151
                            [changed_files] => 2
                        )

                )

            [public] => 1
            [created_at] => 2014-11-30T17:06:26Z
            [org] => Array
                (
                    [id] => 916372
                    [login] => neo4j-contrib
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neo4j-contrib
                    [avatar_url] => https://avatars.githubusercontent.com/u/916372?
                )

        )

    [171] => Array
        (
            [id] => 2435148371
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 27306229
                    [name] => ikwattro/developer-resources
                    [url] => https://api.github.com/repos/ikwattro/developer-resources
                )

            [payload] => Array
                (
                    [ref] => php
                    [ref_type] => branch
                    [master_branch] => gh-pages
                    [description] => neo4j developer resources
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-11-30T17:05:10Z
        )

    [172] => Array
        (
            [id] => 2435085112
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 27306229
                    [name] => ikwattro/developer-resources
                    [url] => https://api.github.com/repos/ikwattro/developer-resources
                )

            [payload] => Array
                (
                    [push_id] => 513675684
                    [size] => 5
                    [distinct_size] => 2
                    [ref] => refs/heads/gh-pages
                    [head] => ca79aaae7251b32407002f293c07544c36f45ddc
                    [before] => 80f7cec1126c65b09dd081b6518c6f406423170b
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 5ac12b99001d17d38bc06f49ce930f91de3ed9b6
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added https to http redirection to avoid error when including http resources from https hosts
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/5ac12b99001d17d38bc06f49ce930f91de3ed9b6
                                )

                            [1] => Array
                                (
                                    [sha] => fcde68a59226447f9e818a015ef27d24e17fbbfb
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => updated usage of neoclient to reflect new 2.0 version
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/fcde68a59226447f9e818a015ef27d24e17fbbfb
                                )

                            [2] => Array
                                (
                                    [sha] => 9fb36fbfb2438734749d961cf16b78d8b6bc3170
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => update 2.0 in package manager
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/9fb36fbfb2438734749d961cf16b78d8b6bc3170
                                )

                            [3] => Array
                                (
                                    [sha] => 4737194dae7d1c0151014b6da2c63d821415ee24
                                    [author] => Array
                                        (
                                            [email] => github@jexp.de
                                            [name] => Michael Hunger
                                        )

                                    [message] => Merge pull request #44 from ikwattro/https-redirect

Language driver template - https redirection to http to avoid resources get errors
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/4737194dae7d1c0151014b6da2c63d821415ee24
                                )

                            [4] => Array
                                (
                                    [sha] => ca79aaae7251b32407002f293c07544c36f45ddc
                                    [author] => Array
                                        (
                                            [email] => github@jexp.de
                                            [name] => Michael Hunger
                                        )

                                    [message] => Merge pull request #45 from ikwattro/neoclient

updated usage of neoclient to reflect new 2.0 version
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/ca79aaae7251b32407002f293c07544c36f45ddc
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-30T15:23:14Z
        )

    [173] => Array
        (
            [id] => 2435081215
            [type] => CommitCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/comments/8770761
                            [html_url] => https://github.com/neoxygen/neo4j-neoclient/commit/a5379ce0392bade2010fbfa644681214bae2cae6#commitcomment-8770761
                            [id] => 8770761
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [position] => 5
                            [line] => 27
                            [path] => src/Formatter/Relationship.php
                            [commit_id] => a5379ce0392bade2010fbfa644681214bae2cae6
                            [created_at] => 2014-11-30T15:16:49Z
                            [updated_at] => 2014-11-30T15:16:49Z
                            [body] => Yeah forgot to remove some steps, trying to get rid of some recursion and ran out of ideas :)
                        )

                )

            [public] => 1
            [created_at] => 2014-11-30T15:16:49Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [174] => Array
        (
            [id] => 2434618860
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [ref] => 2.0.1
                    [ref_type] => tag
                    [master_branch] => master
                    [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-11-29T22:24:33Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [175] => Array
        (
            [id] => 2434618725
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 513453114
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 1844f64613cf549badd3bfae2a83fdf50929e0e6
                    [before] => 896fc95aa6b58714500c0a6863d1457197c4c1e9
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 1844f64613cf549badd3bfae2a83fdf50929e0e6
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed stricts deps
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/1844f64613cf549badd3bfae2a83fdf50929e0e6
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T22:24:18Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [176] => Array
        (
            [id] => 2434567248
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 1039520
                    [name] => rg3/youtube-dl
                    [url] => https://api.github.com/repos/rg3/youtube-dl
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-11-29T20:56:15Z
        )

    [177] => Array
        (
            [id] => 2434405649
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 27306229
                    [name] => ikwattro/developer-resources
                    [url] => https://api.github.com/repos/ikwattro/developer-resources
                )

            [payload] => Array
                (
                    [push_id] => 513351214
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/neoclient
                    [head] => 9fb36fbfb2438734749d961cf16b78d8b6bc3170
                    [before] => fcde68a59226447f9e818a015ef27d24e17fbbfb
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 9fb36fbfb2438734749d961cf16b78d8b6bc3170
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => update 2.0 in package manager
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/developer-resources/commits/9fb36fbfb2438734749d961cf16b78d8b6bc3170
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T16:25:22Z
        )

    [178] => Array
        (
            [id] => 2434404855
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 23597997
                    [name] => neo4j-contrib/developer-resources
                    [url] => https://api.github.com/repos/neo4j-contrib/developer-resources
                )

            [payload] => Array
                (
                    [action] => opened
                    [number] => 45
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/45
                            [id] => 25224550
                            [html_url] => https://github.com/neo4j-contrib/developer-resources/pull/45
                            [diff_url] => https://github.com/neo4j-contrib/developer-resources/pull/45.diff
                            [patch_url] => https://github.com/neo4j-contrib/developer-resources/pull/45.patch
                            [issue_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/45
                            [number] => 45
                            [state] => open
                            [locked] =>
                            [title] => updated usage of neoclient to reflect new 2.0 version
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] => Updated usage for new 2.0 version
                            [created_at] => 2014-11-29T16:24:00Z
                            [updated_at] => 2014-11-29T16:24:00Z
                            [closed_at] =>
                            [merged_at] =>
                            [merge_commit_sha] =>
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/45/commits
                            [review_comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/45/comments
                            [review_comment_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/45/comments
                            [statuses_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/statuses/fcde68a59226447f9e818a015ef27d24e17fbbfb
                            [head] => Array
                                (
                                    [label] => ikwattro:neoclient
                                    [ref] => neoclient
                                    [sha] => fcde68a59226447f9e818a015ef27d24e17fbbfb
                                    [user] => Array
                                        (
                                            [login] => ikwattro
                                            [id] => 1222009
                                            [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/ikwattro
                                            [html_url] => https://github.com/ikwattro
                                            [followers_url] => https://api.github.com/users/ikwattro/followers
                                            [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                            [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                            [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                            [repos_url] => https://api.github.com/users/ikwattro/repos
                                            [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                            [type] => User
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 27306229
                                            [name] => developer-resources
                                            [full_name] => ikwattro/developer-resources
                                            [owner] => Array
                                                (
                                                    [login] => ikwattro
                                                    [id] => 1222009
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/ikwattro
                                                    [html_url] => https://github.com/ikwattro
                                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                                    [type] => User
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/ikwattro/developer-resources
                                            [description] => neo4j developer resources
                                            [fork] => 1
                                            [url] => https://api.github.com/repos/ikwattro/developer-resources
                                            [forks_url] => https://api.github.com/repos/ikwattro/developer-resources/forks
                                            [keys_url] => https://api.github.com/repos/ikwattro/developer-resources/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/ikwattro/developer-resources/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/ikwattro/developer-resources/teams
                                            [hooks_url] => https://api.github.com/repos/ikwattro/developer-resources/hooks
                                            [issue_events_url] => https://api.github.com/repos/ikwattro/developer-resources/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/ikwattro/developer-resources/events
                                            [assignees_url] => https://api.github.com/repos/ikwattro/developer-resources/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/ikwattro/developer-resources/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/ikwattro/developer-resources/tags
                                            [blobs_url] => https://api.github.com/repos/ikwattro/developer-resources/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/ikwattro/developer-resources/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/ikwattro/developer-resources/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/ikwattro/developer-resources/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/ikwattro/developer-resources/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/ikwattro/developer-resources/languages
                                            [stargazers_url] => https://api.github.com/repos/ikwattro/developer-resources/stargazers
                                            [contributors_url] => https://api.github.com/repos/ikwattro/developer-resources/contributors
                                            [subscribers_url] => https://api.github.com/repos/ikwattro/developer-resources/subscribers
                                            [subscription_url] => https://api.github.com/repos/ikwattro/developer-resources/subscription
                                            [commits_url] => https://api.github.com/repos/ikwattro/developer-resources/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/ikwattro/developer-resources/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/ikwattro/developer-resources/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/ikwattro/developer-resources/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/ikwattro/developer-resources/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/ikwattro/developer-resources/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/ikwattro/developer-resources/merges
                                            [archive_url] => https://api.github.com/repos/ikwattro/developer-resources/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/ikwattro/developer-resources/downloads
                                            [issues_url] => https://api.github.com/repos/ikwattro/developer-resources/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/ikwattro/developer-resources/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/ikwattro/developer-resources/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/ikwattro/developer-resources/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/ikwattro/developer-resources/labels{/name}
                                            [releases_url] => https://api.github.com/repos/ikwattro/developer-resources/releases{/id}
                                            [created_at] => 2014-11-29T15:31:08Z
                                            [updated_at] => 2014-11-29T15:31:09Z
                                            [pushed_at] => 2014-11-29T16:23:34Z
                                            [git_url] => git://github.com/ikwattro/developer-resources.git
                                            [ssh_url] => git@github.com:ikwattro/developer-resources.git
                                            [clone_url] => https://github.com/ikwattro/developer-resources.git
                                            [svn_url] => https://github.com/ikwattro/developer-resources
                                            [homepage] =>
                                            [size] => 12794
                                            [stargazers_count] => 0
                                            [watchers_count] => 0
                                            [language] => Python
                                            [has_issues] =>
                                            [has_downloads] => 1
                                            [has_wiki] =>
                                            [has_pages] => 1
                                            [forks_count] => 0
                                            [mirror_url] =>
                                            [open_issues_count] => 0
                                            [forks] => 0
                                            [open_issues] => 0
                                            [watchers] => 0
                                            [default_branch] => gh-pages
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => neo4j-contrib:gh-pages
                                    [ref] => gh-pages
                                    [sha] => 80f7cec1126c65b09dd081b6518c6f406423170b
                                    [user] => Array
                                        (
                                            [login] => neo4j-contrib
                                            [id] => 916372
                                            [avatar_url] => https://avatars.githubusercontent.com/u/916372?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neo4j-contrib
                                            [html_url] => https://github.com/neo4j-contrib
                                            [followers_url] => https://api.github.com/users/neo4j-contrib/followers
                                            [following_url] => https://api.github.com/users/neo4j-contrib/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neo4j-contrib/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neo4j-contrib/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neo4j-contrib/subscriptions
                                            [organizations_url] => https://api.github.com/users/neo4j-contrib/orgs
                                            [repos_url] => https://api.github.com/users/neo4j-contrib/repos
                                            [events_url] => https://api.github.com/users/neo4j-contrib/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neo4j-contrib/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 23597997
                                            [name] => developer-resources
                                            [full_name] => neo4j-contrib/developer-resources
                                            [owner] => Array
                                                (
                                                    [login] => neo4j-contrib
                                                    [id] => 916372
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/916372?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neo4j-contrib
                                                    [html_url] => https://github.com/neo4j-contrib
                                                    [followers_url] => https://api.github.com/users/neo4j-contrib/followers
                                                    [following_url] => https://api.github.com/users/neo4j-contrib/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neo4j-contrib/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neo4j-contrib/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neo4j-contrib/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neo4j-contrib/orgs
                                                    [repos_url] => https://api.github.com/users/neo4j-contrib/repos
                                                    [events_url] => https://api.github.com/users/neo4j-contrib/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neo4j-contrib/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neo4j-contrib/developer-resources
                                            [description] => neo4j developer resources
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources
                                            [forks_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/forks
                                            [keys_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/teams
                                            [hooks_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/hooks
                                            [issue_events_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/events
                                            [assignees_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/tags
                                            [blobs_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/languages
                                            [stargazers_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/stargazers
                                            [contributors_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/contributors
                                            [subscribers_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/subscribers
                                            [subscription_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/subscription
                                            [commits_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/merges
                                            [archive_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/downloads
                                            [issues_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/releases{/id}
                                            [created_at] => 2014-09-02T22:33:24Z
                                            [updated_at] => 2014-11-28T17:08:29Z
                                            [pushed_at] => 2014-11-28T17:08:29Z
                                            [git_url] => git://github.com/neo4j-contrib/developer-resources.git
                                            [ssh_url] => git@github.com:neo4j-contrib/developer-resources.git
                                            [clone_url] => https://github.com/neo4j-contrib/developer-resources.git
                                            [svn_url] => https://github.com/neo4j-contrib/developer-resources
                                            [homepage] =>
                                            [size] => 12794
                                            [stargazers_count] => 20
                                            [watchers_count] => 20
                                            [language] => Python
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] =>
                                            [has_pages] => 1
                                            [forks_count] => 42
                                            [mirror_url] =>
                                            [open_issues_count] => 8
                                            [forks] => 42
                                            [open_issues] => 8
                                            [watchers] => 20
                                            [default_branch] => gh-pages
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/45
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neo4j-contrib/developer-resources/pull/45
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/45
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/45/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/45/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/45/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/statuses/fcde68a59226447f9e818a015ef27d24e17fbbfb
                                        )

                                )

                            [merged] =>
                            [mergeable] =>
                            [mergeable_state] => unknown
                            [merged_by] =>
                            [comments] => 0
                            [review_comments] => 0
                            [commits] => 1
                            [additions] => 10
                            [deletions] => 16
                            [changed_files] => 1
                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T16:24:00Z
            [org] => Array
                (
                    [id] => 916372
                    [login] => neo4j-contrib
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neo4j-contrib
                    [avatar_url] => https://avatars.githubusercontent.com/u/916372?
                )

        )

    [179] => Array
        (
            [id] => 2434404592
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 27306229
                    [name] => ikwattro/developer-resources
                    [url] => https://api.github.com/repos/ikwattro/developer-resources
                )

            [payload] => Array
                (
                    [ref] => neoclient
                    [ref_type] => branch
                    [master_branch] => gh-pages
                    [description] => neo4j developer resources
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-11-29T16:23:34Z
        )

    [180] => Array
        (
            [id] => 2434394367
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 23597997
                    [name] => neo4j-contrib/developer-resources
                    [url] => https://api.github.com/repos/neo4j-contrib/developer-resources
                )

            [payload] => Array
                (
                    [action] => opened
                    [number] => 44
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/44
                            [id] => 25224375
                            [html_url] => https://github.com/neo4j-contrib/developer-resources/pull/44
                            [diff_url] => https://github.com/neo4j-contrib/developer-resources/pull/44.diff
                            [patch_url] => https://github.com/neo4j-contrib/developer-resources/pull/44.patch
                            [issue_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/44
                            [number] => 44
                            [state] => open
                            [locked] =>
                            [title] => Language driver template - https redirection to http to avoid resources get errors
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] => Hi,

When running the example on a https host (e.g. with the heroku deploy button) , errors are triggered because resources included in template use http links.

![Imgur](http://i.imgur.com/nVsAEtO.png)

There are two solutions to avoid this problem :

* Change all links in the templates folder and all drivers examples.
* Add a script to detect https and redirect to http

This P.R. proposes the second solution.

/cc @jexp
                            [created_at] => 2014-11-29T16:07:07Z
                            [updated_at] => 2014-11-29T16:07:07Z
                            [closed_at] =>
                            [merged_at] =>
                            [merge_commit_sha] =>
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/44/commits
                            [review_comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/44/comments
                            [review_comment_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/44/comments
                            [statuses_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/statuses/5ac12b99001d17d38bc06f49ce930f91de3ed9b6
                            [head] => Array
                                (
                                    [label] => ikwattro:https-redirect
                                    [ref] => https-redirect
                                    [sha] => 5ac12b99001d17d38bc06f49ce930f91de3ed9b6
                                    [user] => Array
                                        (
                                            [login] => ikwattro
                                            [id] => 1222009
                                            [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/ikwattro
                                            [html_url] => https://github.com/ikwattro
                                            [followers_url] => https://api.github.com/users/ikwattro/followers
                                            [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                            [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                            [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                            [repos_url] => https://api.github.com/users/ikwattro/repos
                                            [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                            [type] => User
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 27306229
                                            [name] => developer-resources
                                            [full_name] => ikwattro/developer-resources
                                            [owner] => Array
                                                (
                                                    [login] => ikwattro
                                                    [id] => 1222009
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/ikwattro
                                                    [html_url] => https://github.com/ikwattro
                                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                                    [type] => User
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/ikwattro/developer-resources
                                            [description] => neo4j developer resources
                                            [fork] => 1
                                            [url] => https://api.github.com/repos/ikwattro/developer-resources
                                            [forks_url] => https://api.github.com/repos/ikwattro/developer-resources/forks
                                            [keys_url] => https://api.github.com/repos/ikwattro/developer-resources/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/ikwattro/developer-resources/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/ikwattro/developer-resources/teams
                                            [hooks_url] => https://api.github.com/repos/ikwattro/developer-resources/hooks
                                            [issue_events_url] => https://api.github.com/repos/ikwattro/developer-resources/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/ikwattro/developer-resources/events
                                            [assignees_url] => https://api.github.com/repos/ikwattro/developer-resources/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/ikwattro/developer-resources/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/ikwattro/developer-resources/tags
                                            [blobs_url] => https://api.github.com/repos/ikwattro/developer-resources/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/ikwattro/developer-resources/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/ikwattro/developer-resources/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/ikwattro/developer-resources/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/ikwattro/developer-resources/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/ikwattro/developer-resources/languages
                                            [stargazers_url] => https://api.github.com/repos/ikwattro/developer-resources/stargazers
                                            [contributors_url] => https://api.github.com/repos/ikwattro/developer-resources/contributors
                                            [subscribers_url] => https://api.github.com/repos/ikwattro/developer-resources/subscribers
                                            [subscription_url] => https://api.github.com/repos/ikwattro/developer-resources/subscription
                                            [commits_url] => https://api.github.com/repos/ikwattro/developer-resources/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/ikwattro/developer-resources/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/ikwattro/developer-resources/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/ikwattro/developer-resources/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/ikwattro/developer-resources/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/ikwattro/developer-resources/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/ikwattro/developer-resources/merges
                                            [archive_url] => https://api.github.com/repos/ikwattro/developer-resources/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/ikwattro/developer-resources/downloads
                                            [issues_url] => https://api.github.com/repos/ikwattro/developer-resources/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/ikwattro/developer-resources/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/ikwattro/developer-resources/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/ikwattro/developer-resources/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/ikwattro/developer-resources/labels{/name}
                                            [releases_url] => https://api.github.com/repos/ikwattro/developer-resources/releases{/id}
                                            [created_at] => 2014-11-29T15:31:08Z
                                            [updated_at] => 2014-11-29T15:31:09Z
                                            [pushed_at] => 2014-11-29T16:03:05Z
                                            [git_url] => git://github.com/ikwattro/developer-resources.git
                                            [ssh_url] => git@github.com:ikwattro/developer-resources.git
                                            [clone_url] => https://github.com/ikwattro/developer-resources.git
                                            [svn_url] => https://github.com/ikwattro/developer-resources
                                            [homepage] =>
                                            [size] => 12794
                                            [stargazers_count] => 0
                                            [watchers_count] => 0
                                            [language] => Python
                                            [has_issues] =>
                                            [has_downloads] => 1
                                            [has_wiki] =>
                                            [has_pages] => 1
                                            [forks_count] => 0
                                            [mirror_url] =>
                                            [open_issues_count] => 0
                                            [forks] => 0
                                            [open_issues] => 0
                                            [watchers] => 0
                                            [default_branch] => gh-pages
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => neo4j-contrib:gh-pages
                                    [ref] => gh-pages
                                    [sha] => 80f7cec1126c65b09dd081b6518c6f406423170b
                                    [user] => Array
                                        (
                                            [login] => neo4j-contrib
                                            [id] => 916372
                                            [avatar_url] => https://avatars.githubusercontent.com/u/916372?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neo4j-contrib
                                            [html_url] => https://github.com/neo4j-contrib
                                            [followers_url] => https://api.github.com/users/neo4j-contrib/followers
                                            [following_url] => https://api.github.com/users/neo4j-contrib/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neo4j-contrib/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neo4j-contrib/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neo4j-contrib/subscriptions
                                            [organizations_url] => https://api.github.com/users/neo4j-contrib/orgs
                                            [repos_url] => https://api.github.com/users/neo4j-contrib/repos
                                            [events_url] => https://api.github.com/users/neo4j-contrib/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neo4j-contrib/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 23597997
                                            [name] => developer-resources
                                            [full_name] => neo4j-contrib/developer-resources
                                            [owner] => Array
                                                (
                                                    [login] => neo4j-contrib
                                                    [id] => 916372
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/916372?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neo4j-contrib
                                                    [html_url] => https://github.com/neo4j-contrib
                                                    [followers_url] => https://api.github.com/users/neo4j-contrib/followers
                                                    [following_url] => https://api.github.com/users/neo4j-contrib/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neo4j-contrib/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neo4j-contrib/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neo4j-contrib/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neo4j-contrib/orgs
                                                    [repos_url] => https://api.github.com/users/neo4j-contrib/repos
                                                    [events_url] => https://api.github.com/users/neo4j-contrib/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neo4j-contrib/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neo4j-contrib/developer-resources
                                            [description] => neo4j developer resources
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neo4j-contrib/developer-resources
                                            [forks_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/forks
                                            [keys_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/teams
                                            [hooks_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/hooks
                                            [issue_events_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/events
                                            [assignees_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/tags
                                            [blobs_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/languages
                                            [stargazers_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/stargazers
                                            [contributors_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/contributors
                                            [subscribers_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/subscribers
                                            [subscription_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/subscription
                                            [commits_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/merges
                                            [archive_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/downloads
                                            [issues_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neo4j-contrib/developer-resources/releases{/id}
                                            [created_at] => 2014-09-02T22:33:24Z
                                            [updated_at] => 2014-11-28T17:08:29Z
                                            [pushed_at] => 2014-11-28T17:08:29Z
                                            [git_url] => git://github.com/neo4j-contrib/developer-resources.git
                                            [ssh_url] => git@github.com:neo4j-contrib/developer-resources.git
                                            [clone_url] => https://github.com/neo4j-contrib/developer-resources.git
                                            [svn_url] => https://github.com/neo4j-contrib/developer-resources
                                            [homepage] =>
                                            [size] => 12794
                                            [stargazers_count] => 20
                                            [watchers_count] => 20
                                            [language] => Python
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] =>
                                            [has_pages] => 1
                                            [forks_count] => 42
                                            [mirror_url] =>
                                            [open_issues_count] => 7
                                            [forks] => 42
                                            [open_issues] => 7
                                            [watchers] => 20
                                            [default_branch] => gh-pages
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/44
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neo4j-contrib/developer-resources/pull/44
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/44
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/issues/44/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/44/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/pulls/44/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neo4j-contrib/developer-resources/statuses/5ac12b99001d17d38bc06f49ce930f91de3ed9b6
                                        )

                                )

                            [merged] =>
                            [mergeable] =>
                            [mergeable_state] => unknown
                            [merged_by] =>
                            [comments] => 0
                            [review_comments] => 0
                            [commits] => 1
                            [additions] => 6
                            [deletions] => 0
                            [changed_files] => 1
                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T16:07:08Z
            [org] => Array
                (
                    [id] => 916372
                    [login] => neo4j-contrib
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neo4j-contrib
                    [avatar_url] => https://avatars.githubusercontent.com/u/916372?
                )

        )

    [181] => Array
        (
            [id] => 2434391760
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 27306229
                    [name] => ikwattro/developer-resources
                    [url] => https://api.github.com/repos/ikwattro/developer-resources
                )

            [payload] => Array
                (
                    [ref] => https-redirect
                    [ref_type] => branch
                    [master_branch] => gh-pages
                    [description] => neo4j developer resources
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-11-29T16:03:06Z
        )

    [182] => Array
        (
            [id] => 2434389170
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 25119301
                    [name] => ikwattro/neo4j-neoclient-example
                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example
                )

            [payload] => Array
                (
                    [push_id] => 513342729
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => b1a2baf1504871d927f0a4ff4aee11cc16ef4b88
                    [before] => edb96c56b55ee6a953da8fc6b7a79a2e105d3d38
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => b1a2baf1504871d927f0a4ff4aee11cc16ef4b88
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added https to http relocation
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example/commits/b1a2baf1504871d927f0a4ff4aee11cc16ef4b88
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T15:59:04Z
        )

    [183] => Array
        (
            [id] => 2434374782
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 27306229
                    [name] => ikwattro/developer-resources
                    [url] => https://api.github.com/repos/ikwattro/developer-resources
                )

            [payload] => Array
                (
                    [ref] => https-links
                    [ref_type] => branch
                    [master_branch] => gh-pages
                    [description] => neo4j developer resources
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-11-29T15:34:12Z
        )

    [184] => Array
        (
            [id] => 2434372957
            [type] => ForkEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 23597997
                    [name] => neo4j-contrib/developer-resources
                    [url] => https://api.github.com/repos/neo4j-contrib/developer-resources
                )

            [payload] => Array
                (
                    [forkee] => Array
                        (
                            [id] => 27306229
                            [name] => developer-resources
                            [full_name] => ikwattro/developer-resources
                            [owner] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [private] =>
                            [html_url] => https://github.com/ikwattro/developer-resources
                            [description] => neo4j developer resources
                            [fork] => 1
                            [url] => https://api.github.com/repos/ikwattro/developer-resources
                            [forks_url] => https://api.github.com/repos/ikwattro/developer-resources/forks
                            [keys_url] => https://api.github.com/repos/ikwattro/developer-resources/keys{/key_id}
                            [collaborators_url] => https://api.github.com/repos/ikwattro/developer-resources/collaborators{/collaborator}
                            [teams_url] => https://api.github.com/repos/ikwattro/developer-resources/teams
                            [hooks_url] => https://api.github.com/repos/ikwattro/developer-resources/hooks
                            [issue_events_url] => https://api.github.com/repos/ikwattro/developer-resources/issues/events{/number}
                            [events_url] => https://api.github.com/repos/ikwattro/developer-resources/events
                            [assignees_url] => https://api.github.com/repos/ikwattro/developer-resources/assignees{/user}
                            [branches_url] => https://api.github.com/repos/ikwattro/developer-resources/branches{/branch}
                            [tags_url] => https://api.github.com/repos/ikwattro/developer-resources/tags
                            [blobs_url] => https://api.github.com/repos/ikwattro/developer-resources/git/blobs{/sha}
                            [git_tags_url] => https://api.github.com/repos/ikwattro/developer-resources/git/tags{/sha}
                            [git_refs_url] => https://api.github.com/repos/ikwattro/developer-resources/git/refs{/sha}
                            [trees_url] => https://api.github.com/repos/ikwattro/developer-resources/git/trees{/sha}
                            [statuses_url] => https://api.github.com/repos/ikwattro/developer-resources/statuses/{sha}
                            [languages_url] => https://api.github.com/repos/ikwattro/developer-resources/languages
                            [stargazers_url] => https://api.github.com/repos/ikwattro/developer-resources/stargazers
                            [contributors_url] => https://api.github.com/repos/ikwattro/developer-resources/contributors
                            [subscribers_url] => https://api.github.com/repos/ikwattro/developer-resources/subscribers
                            [subscription_url] => https://api.github.com/repos/ikwattro/developer-resources/subscription
                            [commits_url] => https://api.github.com/repos/ikwattro/developer-resources/commits{/sha}
                            [git_commits_url] => https://api.github.com/repos/ikwattro/developer-resources/git/commits{/sha}
                            [comments_url] => https://api.github.com/repos/ikwattro/developer-resources/comments{/number}
                            [issue_comment_url] => https://api.github.com/repos/ikwattro/developer-resources/issues/comments/{number}
                            [contents_url] => https://api.github.com/repos/ikwattro/developer-resources/contents/{+path}
                            [compare_url] => https://api.github.com/repos/ikwattro/developer-resources/compare/{base}...{head}
                            [merges_url] => https://api.github.com/repos/ikwattro/developer-resources/merges
                            [archive_url] => https://api.github.com/repos/ikwattro/developer-resources/{archive_format}{/ref}
                            [downloads_url] => https://api.github.com/repos/ikwattro/developer-resources/downloads
                            [issues_url] => https://api.github.com/repos/ikwattro/developer-resources/issues{/number}
                            [pulls_url] => https://api.github.com/repos/ikwattro/developer-resources/pulls{/number}
                            [milestones_url] => https://api.github.com/repos/ikwattro/developer-resources/milestones{/number}
                            [notifications_url] => https://api.github.com/repos/ikwattro/developer-resources/notifications{?since,all,participating}
                            [labels_url] => https://api.github.com/repos/ikwattro/developer-resources/labels{/name}
                            [releases_url] => https://api.github.com/repos/ikwattro/developer-resources/releases{/id}
                            [created_at] => 2014-11-29T15:31:08Z
                            [updated_at] => 2014-11-28T17:08:29Z
                            [pushed_at] => 2014-11-28T17:08:29Z
                            [git_url] => git://github.com/ikwattro/developer-resources.git
                            [ssh_url] => git@github.com:ikwattro/developer-resources.git
                            [clone_url] => https://github.com/ikwattro/developer-resources.git
                            [svn_url] => https://github.com/ikwattro/developer-resources
                            [homepage] =>
                            [size] => 12794
                            [stargazers_count] => 0
                            [watchers_count] => 0
                            [language] =>
                            [has_issues] =>
                            [has_downloads] => 1
                            [has_wiki] =>
                            [has_pages] => 1
                            [forks_count] => 0
                            [mirror_url] =>
                            [open_issues_count] => 0
                            [forks] => 0
                            [open_issues] => 0
                            [watchers] => 0
                            [default_branch] => gh-pages
                            [public] => 1
                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T15:31:09Z
            [org] => Array
                (
                    [id] => 916372
                    [login] => neo4j-contrib
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neo4j-contrib
                    [avatar_url] => https://avatars.githubusercontent.com/u/916372?
                )

        )

    [185] => Array
        (
            [id] => 2434364841
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 25119301
                    [name] => ikwattro/neo4j-neoclient-example
                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example
                )

            [payload] => Array
                (
                    [push_id] => 513330765
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => edb96c56b55ee6a953da8fc6b7a79a2e105d3d38
                    [before] => 8bba38bd14a2c2372798d810c0e4a4545e69bf79
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => edb96c56b55ee6a953da8fc6b7a79a2e105d3d38
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => js vendors using https
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example/commits/edb96c56b55ee6a953da8fc6b7a79a2e105d3d38
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T15:17:15Z
        )

    [186] => Array
        (
            [id] => 2434361351
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 25119301
                    [name] => ikwattro/neo4j-neoclient-example
                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example
                )

            [payload] => Array
                (
                    [push_id] => 513329101
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 8bba38bd14a2c2372798d810c0e4a4545e69bf79
                    [before] => a08f89631ad295a5ad91548a5d67703eeade8746
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 8bba38bd14a2c2372798d810c0e4a4545e69bf79
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed non http links in static
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example/commits/8bba38bd14a2c2372798d810c0e4a4545e69bf79
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T15:11:19Z
        )

    [187] => Array
        (
            [id] => 2434358571
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 25119301
                    [name] => ikwattro/neo4j-neoclient-example
                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example
                )

            [payload] => Array
                (
                    [push_id] => 513327779
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => a08f89631ad295a5ad91548a5d67703eeade8746
                    [before] => efd3aedc9583db0f526940045b2dd02e03f68bff
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => a08f89631ad295a5ad91548a5d67703eeade8746
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => refactored app to use last version of client
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example/commits/a08f89631ad295a5ad91548a5d67703eeade8746
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T15:06:27Z
        )

    [188] => Array
        (
            [id] => 2434345877
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 25119301
                    [name] => ikwattro/neo4j-neoclient-example
                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example
                )

            [payload] => Array
                (
                    [push_id] => 513321729
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => efd3aedc9583db0f526940045b2dd02e03f68bff
                    [before] => c6c87b3ed643c3963068baf7588eb642d2789329
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => efd3aedc9583db0f526940045b2dd02e03f68bff
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed type
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example/commits/efd3aedc9583db0f526940045b2dd02e03f68bff
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T14:43:15Z
        )

    [189] => Array
        (
            [id] => 2434342983
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 25119301
                    [name] => ikwattro/neo4j-neoclient-example
                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example
                )

            [payload] => Array
                (
                    [push_id] => 513320452
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => c6c87b3ed643c3963068baf7588eb642d2789329
                    [before] => 764c908b76f8162e6b82010854d952a3e72c72e9
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => c6c87b3ed643c3963068baf7588eb642d2789329
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => deps locks
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example/commits/c6c87b3ed643c3963068baf7588eb642d2789329
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T14:38:39Z
        )

    [190] => Array
        (
            [id] => 2434341658
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 25119301
                    [name] => ikwattro/neo4j-neoclient-example
                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example
                )

            [payload] => Array
                (
                    [push_id] => 513319834
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 764c908b76f8162e6b82010854d952a3e72c72e9
                    [before] => d52bae8eb0efd4959a9d033d57a2480ad7b11eb2
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 764c908b76f8162e6b82010854d952a3e72c72e9
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => updated neoclient dependency
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/neo4j-neoclient-example/commits/764c908b76f8162e6b82010854d952a3e72c72e9
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T14:36:15Z
        )

    [191] => Array
        (
            [id] => 2434330181
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 513314307
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 896fc95aa6b58714500c0a6863d1457197c4c1e9
                    [before] => 13ef4b50ea33fe1af08cfd8a4c704bac172e6b45
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 896fc95aa6b58714500c0a6863d1457197c4c1e9
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => dev-master is now referenced by 2.1@dev
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/896fc95aa6b58714500c0a6863d1457197c4c1e9
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T14:14:26Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [192] => Array
        (
            [id] => 2434329602
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [ref] => 2.0.0
                    [ref_type] => tag
                    [master_branch] => master
                    [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-11-29T14:13:23Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [193] => Array
        (
            [id] => 2434327336
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 513313020
                    [size] => 8
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 13ef4b50ea33fe1af08cfd8a4c704bac172e6b45
                    [before] => d02315e7a5b9833b75192577d268896cdd743ebe
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => a5379ce0392bade2010fbfa644681214bae2cae6
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added the possibility to get result by identifier
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/a5379ce0392bade2010fbfa644681214bae2cae6
                                )

                            [1] => Array
                                (
                                    [sha] => ca29cae8512afa3cedf7a472a696da736097e57c
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fix issue when response is not array
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/ca29cae8512afa3cedf7a472a696da736097e57c
                                )

                            [2] => Array
                                (
                                    [sha] => 32b8d009cfb3e8a945b7dab7b8cad1434dcc43aa
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => when identifier does not exist, it should return null instead of throwing exception
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/32b8d009cfb3e8a945b7dab7b8cad1434dcc43aa
                                )

                            [3] => Array
                                (
                                    [sha] => 329166e64a246fa61258462e384417459f7c9dc5
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => bumped neo v to 2.1.5 and 2.1.6
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/329166e64a246fa61258462e384417459f7c9dc5
                                )

                            [4] => Array
                                (
                                    [sha] => 38860c44df1d03176287072870c7dad5549e51dd
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => updated deps and removed print statements
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/38860c44df1d03176287072870c7dad5549e51dd
                                )

                            [5] => Array
                                (
                                    [sha] => 6c7a8330301b9669c0d7e332b9566490979d0fe8
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed result formatter and cache, ready for 2.0 stable
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/6c7a8330301b9669c0d7e332b9566490979d0fe8
                                )

                            [6] => Array
                                (
                                    [sha] => 1c3a10ce172cefe1f7f51af12257b064476c0541
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added doc for get result
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/1c3a10ce172cefe1f7f51af12257b064476c0541
                                )

                            [7] => Array
                                (
                                    [sha] => 13ef4b50ea33fe1af08cfd8a4c704bac172e6b45
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => Merge pull request #20 from neoxygen/restformat

added the possibility to get result by identifier
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/13ef4b50ea33fe1af08cfd8a4c704bac172e6b45
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T14:09:27Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [194] => Array
        (
            [id] => 2434327334
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [action] => closed
                    [number] => 20
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/20
                            [id] => 25222539
                            [html_url] => https://github.com/neoxygen/neo4j-neoclient/pull/20
                            [diff_url] => https://github.com/neoxygen/neo4j-neoclient/pull/20.diff
                            [patch_url] => https://github.com/neoxygen/neo4j-neoclient/pull/20.patch
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/20
                            [number] => 20
                            [state] => closed
                            [locked] =>
                            [title] => added the possibility to get result by identifier
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] => This fixes #18 , however with this implementation, the row result format can be removed.
                            [created_at] => 2014-11-29T12:41:31Z
                            [updated_at] => 2014-11-29T14:09:27Z
                            [closed_at] => 2014-11-29T14:09:27Z
                            [merged_at] => 2014-11-29T14:09:27Z
                            [merge_commit_sha] => 0a9204520c30b5dd7ad52afda517a8c586a58d3e
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/20/commits
                            [review_comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/20/comments
                            [review_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/20/comments
                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/1c3a10ce172cefe1f7f51af12257b064476c0541
                            [head] => Array
                                (
                                    [label] => neoxygen:restformat
                                    [ref] => restformat
                                    [sha] => 1c3a10ce172cefe1f7f51af12257b064476c0541
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 24004568
                                            [name] => neo4j-neoclient
                                            [full_name] => neoxygen/neo4j-neoclient
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/releases{/id}
                                            [created_at] => 2014-09-13T20:10:36Z
                                            [updated_at] => 2014-11-29T14:09:27Z
                                            [pushed_at] => 2014-11-29T14:09:27Z
                                            [git_url] => git://github.com/neoxygen/neo4j-neoclient.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-neoclient.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-neoclient.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [homepage] =>
                                            [size] => 1109
                                            [stargazers_count] => 15
                                            [watchers_count] => 15
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 4
                                            [mirror_url] =>
                                            [open_issues_count] => 0
                                            [forks] => 4
                                            [open_issues] => 0
                                            [watchers] => 15
                                            [default_branch] => master
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => neoxygen:master
                                    [ref] => master
                                    [sha] => d02315e7a5b9833b75192577d268896cdd743ebe
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 24004568
                                            [name] => neo4j-neoclient
                                            [full_name] => neoxygen/neo4j-neoclient
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/releases{/id}
                                            [created_at] => 2014-09-13T20:10:36Z
                                            [updated_at] => 2014-11-29T14:09:27Z
                                            [pushed_at] => 2014-11-29T14:09:27Z
                                            [git_url] => git://github.com/neoxygen/neo4j-neoclient.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-neoclient.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-neoclient.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [homepage] =>
                                            [size] => 1109
                                            [stargazers_count] => 15
                                            [watchers_count] => 15
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 4
                                            [mirror_url] =>
                                            [open_issues_count] => 0
                                            [forks] => 4
                                            [open_issues] => 0
                                            [watchers] => 15
                                            [default_branch] => master
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/20
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neoxygen/neo4j-neoclient/pull/20
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/20
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/20/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/20/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/20/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/1c3a10ce172cefe1f7f51af12257b064476c0541
                                        )

                                )

                            [merged] => 1
                            [mergeable] =>
                            [mergeable_state] => unknown
                            [merged_by] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [comments] => 0
                            [review_comments] => 0
                            [commits] => 7
                            [additions] => 236
                            [deletions] => 267
                            [changed_files] => 8
                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T14:09:27Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [195] => Array
        (
            [id] => 2434327332
            [type] => IssuesEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [action] => closed
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/18
                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/18/labels{/name}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/18/comments
                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/18/events
                            [html_url] => https://github.com/neoxygen/neo4j-neoclient/issues/18
                            [id] => 50420088
                            [number] => 18
                            [title] => Refactor Result Formatter for identifiers usage
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => closed
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 0
                            [created_at] => 2014-11-29T09:03:27Z
                            [updated_at] => 2014-11-29T14:09:27Z
                            [closed_at] => 2014-11-29T14:09:27Z
                            [body] => Currently, it is not possible to use identifiers in the result to select nodes to work on, for e.g. :

```MATCH (n:User)-[:FOLLOWS*2]->(fof) RETURN n, collect(fof) AS friendOfFriend;```

with the above query you can not take only the friendOfFriend from the resultSet.

I want to refactor the response formatter and add a `->get` method to add this functionality.

What do you think @Mulkave ?
                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T14:09:27Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [196] => Array
        (
            [id] => 2434323090
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 513311042
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/restformat
                    [head] => 1c3a10ce172cefe1f7f51af12257b064476c0541
                    [before] => 6c7a8330301b9669c0d7e332b9566490979d0fe8
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 1c3a10ce172cefe1f7f51af12257b064476c0541
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added doc for get result
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/1c3a10ce172cefe1f7f51af12257b064476c0541
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T14:01:33Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [197] => Array
        (
            [id] => 2434320542
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 513309822
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/restformat
                    [head] => 6c7a8330301b9669c0d7e332b9566490979d0fe8
                    [before] => 38860c44df1d03176287072870c7dad5549e51dd
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 6c7a8330301b9669c0d7e332b9566490979d0fe8
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed result formatter and cache, ready for 2.0 stable
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/6c7a8330301b9669c0d7e332b9566490979d0fe8
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T13:57:11Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [198] => Array
        (
            [id] => 2434296711
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 513298859
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/restformat
                    [head] => 38860c44df1d03176287072870c7dad5549e51dd
                    [before] => 329166e64a246fa61258462e384417459f7c9dc5
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 38860c44df1d03176287072870c7dad5549e51dd
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => updated deps and removed print statements
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/38860c44df1d03176287072870c7dad5549e51dd
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T13:09:34Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [199] => Array
        (
            [id] => 2434295223
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 513298199
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/restformat
                    [head] => 329166e64a246fa61258462e384417459f7c9dc5
                    [before] => 32b8d009cfb3e8a945b7dab7b8cad1434dcc43aa
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 329166e64a246fa61258462e384417459f7c9dc5
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => bumped neo v to 2.1.5 and 2.1.6
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/329166e64a246fa61258462e384417459f7c9dc5
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T13:06:25Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [200] => Array
        (
            [id] => 2434293393
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 513297309
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/restformat
                    [head] => 32b8d009cfb3e8a945b7dab7b8cad1434dcc43aa
                    [before] => ca29cae8512afa3cedf7a472a696da736097e57c
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 32b8d009cfb3e8a945b7dab7b8cad1434dcc43aa
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => when identifier does not exist, it should return null instead of throwing exception
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/32b8d009cfb3e8a945b7dab7b8cad1434dcc43aa
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T13:02:17Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [201] => Array
        (
            [id] => 2434290506
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 513295993
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/restformat
                    [head] => ca29cae8512afa3cedf7a472a696da736097e57c
                    [before] => a5379ce0392bade2010fbfa644681214bae2cae6
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => ca29cae8512afa3cedf7a472a696da736097e57c
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fix issue when response is not array
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/ca29cae8512afa3cedf7a472a696da736097e57c
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T12:56:30Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [202] => Array
        (
            [id] => 2434283261
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [action] => opened
                    [number] => 20
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/20
                            [id] => 25222539
                            [html_url] => https://github.com/neoxygen/neo4j-neoclient/pull/20
                            [diff_url] => https://github.com/neoxygen/neo4j-neoclient/pull/20.diff
                            [patch_url] => https://github.com/neoxygen/neo4j-neoclient/pull/20.patch
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/20
                            [number] => 20
                            [state] => open
                            [locked] =>
                            [title] => added the possibility to get result by identifier
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] => This fixes #18 , however with this implementation, the row result format can be removed.
                            [created_at] => 2014-11-29T12:41:31Z
                            [updated_at] => 2014-11-29T12:41:31Z
                            [closed_at] =>
                            [merged_at] =>
                            [merge_commit_sha] =>
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/20/commits
                            [review_comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/20/comments
                            [review_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/20/comments
                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/a5379ce0392bade2010fbfa644681214bae2cae6
                            [head] => Array
                                (
                                    [label] => neoxygen:restformat
                                    [ref] => restformat
                                    [sha] => a5379ce0392bade2010fbfa644681214bae2cae6
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 24004568
                                            [name] => neo4j-neoclient
                                            [full_name] => neoxygen/neo4j-neoclient
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/releases{/id}
                                            [created_at] => 2014-09-13T20:10:36Z
                                            [updated_at] => 2014-11-29T10:36:59Z
                                            [pushed_at] => 2014-11-29T12:40:35Z
                                            [git_url] => git://github.com/neoxygen/neo4j-neoclient.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-neoclient.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-neoclient.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [homepage] =>
                                            [size] => 1109
                                            [stargazers_count] => 15
                                            [watchers_count] => 15
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 4
                                            [mirror_url] =>
                                            [open_issues_count] => 2
                                            [forks] => 4
                                            [open_issues] => 2
                                            [watchers] => 15
                                            [default_branch] => master
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => neoxygen:master
                                    [ref] => master
                                    [sha] => d02315e7a5b9833b75192577d268896cdd743ebe
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 24004568
                                            [name] => neo4j-neoclient
                                            [full_name] => neoxygen/neo4j-neoclient
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/releases{/id}
                                            [created_at] => 2014-09-13T20:10:36Z
                                            [updated_at] => 2014-11-29T10:36:59Z
                                            [pushed_at] => 2014-11-29T12:40:35Z
                                            [git_url] => git://github.com/neoxygen/neo4j-neoclient.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-neoclient.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-neoclient.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [homepage] =>
                                            [size] => 1109
                                            [stargazers_count] => 15
                                            [watchers_count] => 15
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 4
                                            [mirror_url] =>
                                            [open_issues_count] => 2
                                            [forks] => 4
                                            [open_issues] => 2
                                            [watchers] => 15
                                            [default_branch] => master
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/20
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neoxygen/neo4j-neoclient/pull/20
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/20
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/20/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/20/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/20/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/a5379ce0392bade2010fbfa644681214bae2cae6
                                        )

                                )

                            [merged] =>
                            [mergeable] =>
                            [mergeable_state] => unknown
                            [merged_by] =>
                            [comments] => 0
                            [review_comments] => 0
                            [commits] => 1
                            [additions] => 65
                            [deletions] => 4
                            [changed_files] => 4
                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T12:41:32Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [203] => Array
        (
            [id] => 2434282790
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [ref] => restformat
                    [ref_type] => branch
                    [master_branch] => master
                    [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-11-29T12:40:35Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [204] => Array
        (
            [id] => 2434223184
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 513266665
                    [size] => 2
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => d02315e7a5b9833b75192577d268896cdd743ebe
                    [before] => 4b2d71f64747d86f503c4b6d704d23df8253b04d
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 38013b30ae2ea5a1f56b755ced7cf5d10732ddd0
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added sendMultiple statements feature
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/38013b30ae2ea5a1f56b755ced7cf5d10732ddd0
                                )

                            [1] => Array
                                (
                                    [sha] => d02315e7a5b9833b75192577d268896cdd743ebe
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => Merge pull request #19 from neoxygen/rest

added sendMultiple statements feature
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/d02315e7a5b9833b75192577d268896cdd743ebe
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T10:36:59Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [205] => Array
        (
            [id] => 2434223172
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [action] => closed
                    [number] => 19
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/19
                            [id] => 25221562
                            [html_url] => https://github.com/neoxygen/neo4j-neoclient/pull/19
                            [diff_url] => https://github.com/neoxygen/neo4j-neoclient/pull/19.diff
                            [patch_url] => https://github.com/neoxygen/neo4j-neoclient/pull/19.patch
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/19
                            [number] => 19
                            [state] => closed
                            [locked] =>
                            [title] => added sendMultiple statements feature
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] =>
                            [created_at] => 2014-11-29T10:36:26Z
                            [updated_at] => 2014-11-29T10:36:56Z
                            [closed_at] => 2014-11-29T10:36:56Z
                            [merged_at] => 2014-11-29T10:36:56Z
                            [merge_commit_sha] => 9962282af551ec210765bb8a04bef0a9c2b77cec
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/19/commits
                            [review_comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/19/comments
                            [review_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/19/comments
                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/38013b30ae2ea5a1f56b755ced7cf5d10732ddd0
                            [head] => Array
                                (
                                    [label] => neoxygen:rest
                                    [ref] => rest
                                    [sha] => 38013b30ae2ea5a1f56b755ced7cf5d10732ddd0
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 24004568
                                            [name] => neo4j-neoclient
                                            [full_name] => neoxygen/neo4j-neoclient
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/releases{/id}
                                            [created_at] => 2014-09-13T20:10:36Z
                                            [updated_at] => 2014-11-25T03:42:58Z
                                            [pushed_at] => 2014-11-29T10:36:56Z
                                            [git_url] => git://github.com/neoxygen/neo4j-neoclient.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-neoclient.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-neoclient.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [homepage] =>
                                            [size] => 1135
                                            [stargazers_count] => 15
                                            [watchers_count] => 15
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 4
                                            [mirror_url] =>
                                            [open_issues_count] => 1
                                            [forks] => 4
                                            [open_issues] => 1
                                            [watchers] => 15
                                            [default_branch] => master
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => neoxygen:master
                                    [ref] => master
                                    [sha] => 4b2d71f64747d86f503c4b6d704d23df8253b04d
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 24004568
                                            [name] => neo4j-neoclient
                                            [full_name] => neoxygen/neo4j-neoclient
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/releases{/id}
                                            [created_at] => 2014-09-13T20:10:36Z
                                            [updated_at] => 2014-11-25T03:42:58Z
                                            [pushed_at] => 2014-11-29T10:36:56Z
                                            [git_url] => git://github.com/neoxygen/neo4j-neoclient.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-neoclient.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-neoclient.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [homepage] =>
                                            [size] => 1135
                                            [stargazers_count] => 15
                                            [watchers_count] => 15
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 4
                                            [mirror_url] =>
                                            [open_issues_count] => 1
                                            [forks] => 4
                                            [open_issues] => 1
                                            [watchers] => 15
                                            [default_branch] => master
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/19
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neoxygen/neo4j-neoclient/pull/19
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/19
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/19/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/19/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/19/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/38013b30ae2ea5a1f56b755ced7cf5d10732ddd0
                                        )

                                )

                            [merged] => 1
                            [mergeable] =>
                            [mergeable_state] => unknown
                            [merged_by] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [comments] => 0
                            [review_comments] => 0
                            [commits] => 1
                            [additions] => 106
                            [deletions] => 4
                            [changed_files] => 7
                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T10:36:59Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [206] => Array
        (
            [id] => 2434222947
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [action] => opened
                    [number] => 19
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/19
                            [id] => 25221562
                            [html_url] => https://github.com/neoxygen/neo4j-neoclient/pull/19
                            [diff_url] => https://github.com/neoxygen/neo4j-neoclient/pull/19.diff
                            [patch_url] => https://github.com/neoxygen/neo4j-neoclient/pull/19.patch
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/19
                            [number] => 19
                            [state] => open
                            [locked] =>
                            [title] => added sendMultiple statements feature
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] =>
                            [created_at] => 2014-11-29T10:36:26Z
                            [updated_at] => 2014-11-29T10:36:26Z
                            [closed_at] =>
                            [merged_at] =>
                            [merge_commit_sha] => 9962282af551ec210765bb8a04bef0a9c2b77cec
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/19/commits
                            [review_comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/19/comments
                            [review_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/19/comments
                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/38013b30ae2ea5a1f56b755ced7cf5d10732ddd0
                            [head] => Array
                                (
                                    [label] => neoxygen:rest
                                    [ref] => rest
                                    [sha] => 38013b30ae2ea5a1f56b755ced7cf5d10732ddd0
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 24004568
                                            [name] => neo4j-neoclient
                                            [full_name] => neoxygen/neo4j-neoclient
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/releases{/id}
                                            [created_at] => 2014-09-13T20:10:36Z
                                            [updated_at] => 2014-11-25T03:42:58Z
                                            [pushed_at] => 2014-11-29T10:35:38Z
                                            [git_url] => git://github.com/neoxygen/neo4j-neoclient.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-neoclient.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-neoclient.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [homepage] =>
                                            [size] => 1135
                                            [stargazers_count] => 15
                                            [watchers_count] => 15
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 4
                                            [mirror_url] =>
                                            [open_issues_count] => 2
                                            [forks] => 4
                                            [open_issues] => 2
                                            [watchers] => 15
                                            [default_branch] => master
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => neoxygen:master
                                    [ref] => master
                                    [sha] => 4b2d71f64747d86f503c4b6d704d23df8253b04d
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 24004568
                                            [name] => neo4j-neoclient
                                            [full_name] => neoxygen/neo4j-neoclient
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/releases{/id}
                                            [created_at] => 2014-09-13T20:10:36Z
                                            [updated_at] => 2014-11-25T03:42:58Z
                                            [pushed_at] => 2014-11-29T10:35:38Z
                                            [git_url] => git://github.com/neoxygen/neo4j-neoclient.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-neoclient.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-neoclient.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-neoclient
                                            [homepage] =>
                                            [size] => 1135
                                            [stargazers_count] => 15
                                            [watchers_count] => 15
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 4
                                            [mirror_url] =>
                                            [open_issues_count] => 2
                                            [forks] => 4
                                            [open_issues] => 2
                                            [watchers] => 15
                                            [default_branch] => master
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/19
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neoxygen/neo4j-neoclient/pull/19
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/19
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/19/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/19/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/pulls/19/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neoclient/statuses/38013b30ae2ea5a1f56b755ced7cf5d10732ddd0
                                        )

                                )

                            [merged] =>
                            [mergeable] => 1
                            [mergeable_state] => unstable
                            [merged_by] =>
                            [comments] => 0
                            [review_comments] => 0
                            [commits] => 1
                            [additions] => 106
                            [deletions] => 4
                            [changed_files] => 7
                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T10:36:26Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [207] => Array
        (
            [id] => 2434222511
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [ref] => rest
                    [ref_type] => branch
                    [master_branch] => master
                    [description] => Simple PHP HttpClient for the Neo4j ReST API with Multi DB Support
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-11-29T10:35:38Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [208] => Array
        (
            [id] => 2434181960
            [type] => IssuesEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [action] => opened
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/18
                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/18/labels{/name}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/18/comments
                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/issues/18/events
                            [html_url] => https://github.com/neoxygen/neo4j-neoclient/issues/18
                            [id] => 50420088
                            [number] => 18
                            [title] => Refactor Result Formatter for identifiers usage
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => open
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 0
                            [created_at] => 2014-11-29T09:03:27Z
                            [updated_at] => 2014-11-29T09:03:27Z
                            [closed_at] =>
                            [body] => Currently, it is not possible to use identifiers in the result to select nodes to work on, for e.g. :

```MATCH (n:User)-[:FOLLOWS*2]->(fof) RETURN n, collect(fof) AS friendOfFriend;```

with the above query you can not take only the friendOfFriend from the resultSet.

I want to refactor the response formatter and add a `->get` method to add this functionality.

What do you think @Mulkave ?
                        )

                )

            [public] => 1
            [created_at] => 2014-11-29T09:03:27Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [209] => Array
        (
            [id] => 2433988809
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 5101141
                    [name] => stedolan/jq
                    [url] => https://api.github.com/repos/stedolan/jq
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-11-29T01:21:12Z
        )

    [210] => Array
        (
            [id] => 2433973260
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 18628501
                    [name] => lexik/LexikJWTAuthenticationBundle
                    [url] => https://api.github.com/repos/lexik/LexikJWTAuthenticationBundle
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-11-29T00:51:18Z
            [org] => Array
                (
                    [id] => 568486
                    [login] => lexik
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/lexik
                    [avatar_url] => https://avatars.githubusercontent.com/u/568486?
                )

        )

    [211] => Array
        (
            [id] => 2433898140
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 25989930
                    [name] => zurb/foundation-apps-template
                    [url] => https://api.github.com/repos/zurb/foundation-apps-template
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-11-28T22:50:25Z
            [org] => Array
                (
                    [id] => 156122
                    [login] => zurb
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/zurb
                    [avatar_url] => https://avatars.githubusercontent.com/u/156122?
                )

        )

    [212] => Array
        (
            [id] => 2433883612
            [type] => CommitCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 25641190
                    [name] => Taapeli/ProtoLoader
                    [url] => https://api.github.com/repos/Taapeli/ProtoLoader
                )

            [payload] => Array
                (
                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/Taapeli/ProtoLoader/comments/8765211
                            [html_url] => https://github.com/Taapeli/ProtoLoader/commit/d628aeec0dbc951e2e825a1a8c03d99bbd02c236#commitcomment-8765211
                            [id] => 8765211
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [position] =>
                            [line] =>
                            [path] =>
                            [commit_id] => d628aeec0dbc951e2e825a1a8c03d99bbd02c236
                            [created_at] => 2014-11-28T22:31:06Z
                            [updated_at] => 2014-11-28T22:31:06Z
                            [body] => Using parameters does not only prevent injection. It permits also to cache the query execution plan, making your queries faster.
                        )

                )

            [public] => 1
            [created_at] => 2014-11-28T22:31:06Z
            [org] => Array
                (
                    [id] => 9367790
                    [login] => Taapeli
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/Taapeli
                    [avatar_url] => https://avatars.githubusercontent.com/u/9367790?
                )

        )

    [213] => Array
        (
            [id] => 2433131538
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 12994843
                    [name] => Omnomhub/omnomhub
                    [url] => https://api.github.com/repos/Omnomhub/omnomhub
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-11-28T12:48:14Z
            [org] => Array
                (
                    [id] => 5507556
                    [login] => Omnomhub
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/Omnomhub
                    [avatar_url] => https://avatars.githubusercontent.com/u/5507556?
                )

        )

    [214] => Array
        (
            [id] => 2431542754
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24947938
                    [name] => neoxygen/graphgen
                    [url] => https://api.github.com/repos/neoxygen/graphgen
                )

            [payload] => Array
                (
                    [push_id] => 512085875
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => b9dfec45e297d0cbd650e191be12c7d6df81d981
                    [before] => 8e29e7c9ecb2f1c03ddb7ba5ea035d083636590a
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => b9dfec45e297d0cbd650e191be12c7d6df81d981
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added ga logo
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/graphgen/commits/b9dfec45e297d0cbd650e191be12c7d6df81d981
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-27T13:54:12Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [215] => Array
        (
            [id] => 2427574849
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 16078488
                    [name] => cytoscape/cytoscape.js-edgehandles
                    [url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles
                )

            [payload] => Array
                (
                    [action] => opened
                    [number] => 21
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/pulls/21
                            [id] => 25037697
                            [html_url] => https://github.com/cytoscape/cytoscape.js-edgehandles/pull/21
                            [diff_url] => https://github.com/cytoscape/cytoscape.js-edgehandles/pull/21.diff
                            [patch_url] => https://github.com/cytoscape/cytoscape.js-edgehandles/pull/21.patch
                            [issue_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/issues/21
                            [number] => 21
                            [state] => open
                            [locked] =>
                            [title] => fixed omitted variable declaration
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] => Hi,

There was an omitted variable declaration for `$container`, this was not triggering an error when using the lib but my IDE complained about it.

Chris
                            [created_at] => 2014-11-25T20:26:09Z
                            [updated_at] => 2014-11-25T20:26:09Z
                            [closed_at] =>
                            [merged_at] =>
                            [merge_commit_sha] =>
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/pulls/21/commits
                            [review_comments_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/pulls/21/comments
                            [review_comment_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/issues/21/comments
                            [statuses_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/statuses/b3bae4ce5104bb9c7c9b6af01e1d0f6d9f461474
                            [head] => Array
                                (
                                    [label] => ikwattro:var-declare
                                    [ref] => var-declare
                                    [sha] => b3bae4ce5104bb9c7c9b6af01e1d0f6d9f461474
                                    [user] => Array
                                        (
                                            [login] => ikwattro
                                            [id] => 1222009
                                            [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/ikwattro
                                            [html_url] => https://github.com/ikwattro
                                            [followers_url] => https://api.github.com/users/ikwattro/followers
                                            [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                            [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                            [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                            [repos_url] => https://api.github.com/users/ikwattro/repos
                                            [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                            [type] => User
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 27144391
                                            [name] => cytoscape.js-edgehandles
                                            [full_name] => ikwattro/cytoscape.js-edgehandles
                                            [owner] => Array
                                                (
                                                    [login] => ikwattro
                                                    [id] => 1222009
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/ikwattro
                                                    [html_url] => https://github.com/ikwattro
                                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                                    [type] => User
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/ikwattro/cytoscape.js-edgehandles
                                            [description] => Edge creation extension for Cytoscape.js
                                            [fork] => 1
                                            [url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles
                                            [forks_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/forks
                                            [keys_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/teams
                                            [hooks_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/hooks
                                            [issue_events_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/events
                                            [assignees_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/tags
                                            [blobs_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/languages
                                            [stargazers_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/stargazers
                                            [contributors_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/contributors
                                            [subscribers_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/subscribers
                                            [subscription_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/subscription
                                            [commits_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/merges
                                            [archive_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/downloads
                                            [issues_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/labels{/name}
                                            [releases_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/releases{/id}
                                            [created_at] => 2014-11-25T20:22:14Z
                                            [updated_at] => 2014-11-25T20:22:14Z
                                            [pushed_at] => 2014-11-25T20:25:11Z
                                            [git_url] => git://github.com/ikwattro/cytoscape.js-edgehandles.git
                                            [ssh_url] => git@github.com:ikwattro/cytoscape.js-edgehandles.git
                                            [clone_url] => https://github.com/ikwattro/cytoscape.js-edgehandles.git
                                            [svn_url] => https://github.com/ikwattro/cytoscape.js-edgehandles
                                            [homepage] =>
                                            [size] => 412
                                            [stargazers_count] => 0
                                            [watchers_count] => 0
                                            [language] => JavaScript
                                            [has_issues] =>
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 0
                                            [mirror_url] =>
                                            [open_issues_count] => 0
                                            [forks] => 0
                                            [open_issues] => 0
                                            [watchers] => 0
                                            [default_branch] => master
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => cytoscape:master
                                    [ref] => master
                                    [sha] => 76fab113d82e8036f9ebe5e248c9c557c032c1eb
                                    [user] => Array
                                        (
                                            [login] => cytoscape
                                            [id] => 956141
                                            [avatar_url] => https://avatars.githubusercontent.com/u/956141?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/cytoscape
                                            [html_url] => https://github.com/cytoscape
                                            [followers_url] => https://api.github.com/users/cytoscape/followers
                                            [following_url] => https://api.github.com/users/cytoscape/following{/other_user}
                                            [gists_url] => https://api.github.com/users/cytoscape/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/cytoscape/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/cytoscape/subscriptions
                                            [organizations_url] => https://api.github.com/users/cytoscape/orgs
                                            [repos_url] => https://api.github.com/users/cytoscape/repos
                                            [events_url] => https://api.github.com/users/cytoscape/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/cytoscape/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 16078488
                                            [name] => cytoscape.js-edgehandles
                                            [full_name] => cytoscape/cytoscape.js-edgehandles
                                            [owner] => Array
                                                (
                                                    [login] => cytoscape
                                                    [id] => 956141
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/956141?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/cytoscape
                                                    [html_url] => https://github.com/cytoscape
                                                    [followers_url] => https://api.github.com/users/cytoscape/followers
                                                    [following_url] => https://api.github.com/users/cytoscape/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/cytoscape/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/cytoscape/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/cytoscape/subscriptions
                                                    [organizations_url] => https://api.github.com/users/cytoscape/orgs
                                                    [repos_url] => https://api.github.com/users/cytoscape/repos
                                                    [events_url] => https://api.github.com/users/cytoscape/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/cytoscape/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/cytoscape/cytoscape.js-edgehandles
                                            [description] => Edge creation extension for Cytoscape.js
                                            [fork] =>
                                            [url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles
                                            [forks_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/forks
                                            [keys_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/teams
                                            [hooks_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/hooks
                                            [issue_events_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/events
                                            [assignees_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/tags
                                            [blobs_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/languages
                                            [stargazers_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/stargazers
                                            [contributors_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/contributors
                                            [subscribers_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/subscribers
                                            [subscription_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/subscription
                                            [commits_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/merges
                                            [archive_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/downloads
                                            [issues_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/labels{/name}
                                            [releases_url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/releases{/id}
                                            [created_at] => 2014-01-20T17:57:49Z
                                            [updated_at] => 2014-11-16T00:28:13Z
                                            [pushed_at] => 2014-11-04T22:44:23Z
                                            [git_url] => git://github.com/cytoscape/cytoscape.js-edgehandles.git
                                            [ssh_url] => git@github.com:cytoscape/cytoscape.js-edgehandles.git
                                            [clone_url] => https://github.com/cytoscape/cytoscape.js-edgehandles.git
                                            [svn_url] => https://github.com/cytoscape/cytoscape.js-edgehandles
                                            [homepage] =>
                                            [size] => 412
                                            [stargazers_count] => 4
                                            [watchers_count] => 4
                                            [language] => JavaScript
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 7
                                            [mirror_url] =>
                                            [open_issues_count] => 5
                                            [forks] => 7
                                            [open_issues] => 5
                                            [watchers] => 4
                                            [default_branch] => master
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/pulls/21
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/cytoscape/cytoscape.js-edgehandles/pull/21
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/issues/21
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/issues/21/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/pulls/21/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/pulls/21/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles/statuses/b3bae4ce5104bb9c7c9b6af01e1d0f6d9f461474
                                        )

                                )

                            [merged] =>
                            [mergeable] =>
                            [mergeable_state] => unknown
                            [merged_by] =>
                            [comments] => 0
                            [review_comments] => 0
                            [commits] => 1
                            [additions] => 1
                            [deletions] => 1
                            [changed_files] => 1
                        )

                )

            [public] => 1
            [created_at] => 2014-11-25T20:26:09Z
            [org] => Array
                (
                    [id] => 956141
                    [login] => cytoscape
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/cytoscape
                    [avatar_url] => https://avatars.githubusercontent.com/u/956141?
                )

        )

    [216] => Array
        (
            [id] => 2427572798
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 27144391
                    [name] => ikwattro/cytoscape.js-edgehandles
                    [url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles
                )

            [payload] => Array
                (
                    [ref] => var-declare
                    [ref_type] => branch
                    [master_branch] => master
                    [description] => Edge creation extension for Cytoscape.js
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-11-25T20:25:12Z
        )

    [217] => Array
        (
            [id] => 2427566315
            [type] => ForkEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 16078488
                    [name] => cytoscape/cytoscape.js-edgehandles
                    [url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles
                )

            [payload] => Array
                (
                    [forkee] => Array
                        (
                            [id] => 27144391
                            [name] => cytoscape.js-edgehandles
                            [full_name] => ikwattro/cytoscape.js-edgehandles
                            [owner] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [private] =>
                            [html_url] => https://github.com/ikwattro/cytoscape.js-edgehandles
                            [description] => Edge creation extension for Cytoscape.js
                            [fork] => 1
                            [url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles
                            [forks_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/forks
                            [keys_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/keys{/key_id}
                            [collaborators_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/collaborators{/collaborator}
                            [teams_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/teams
                            [hooks_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/hooks
                            [issue_events_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/issues/events{/number}
                            [events_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/events
                            [assignees_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/assignees{/user}
                            [branches_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/branches{/branch}
                            [tags_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/tags
                            [blobs_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/git/blobs{/sha}
                            [git_tags_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/git/tags{/sha}
                            [git_refs_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/git/refs{/sha}
                            [trees_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/git/trees{/sha}
                            [statuses_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/statuses/{sha}
                            [languages_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/languages
                            [stargazers_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/stargazers
                            [contributors_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/contributors
                            [subscribers_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/subscribers
                            [subscription_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/subscription
                            [commits_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/commits{/sha}
                            [git_commits_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/git/commits{/sha}
                            [comments_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/comments{/number}
                            [issue_comment_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/issues/comments/{number}
                            [contents_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/contents/{+path}
                            [compare_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/compare/{base}...{head}
                            [merges_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/merges
                            [archive_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/{archive_format}{/ref}
                            [downloads_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/downloads
                            [issues_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/issues{/number}
                            [pulls_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/pulls{/number}
                            [milestones_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/milestones{/number}
                            [notifications_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/notifications{?since,all,participating}
                            [labels_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/labels{/name}
                            [releases_url] => https://api.github.com/repos/ikwattro/cytoscape.js-edgehandles/releases{/id}
                            [created_at] => 2014-11-25T20:22:14Z
                            [updated_at] => 2014-11-16T00:28:13Z
                            [pushed_at] => 2014-11-04T22:44:23Z
                            [git_url] => git://github.com/ikwattro/cytoscape.js-edgehandles.git
                            [ssh_url] => git@github.com:ikwattro/cytoscape.js-edgehandles.git
                            [clone_url] => https://github.com/ikwattro/cytoscape.js-edgehandles.git
                            [svn_url] => https://github.com/ikwattro/cytoscape.js-edgehandles
                            [homepage] =>
                            [size] => 412
                            [stargazers_count] => 0
                            [watchers_count] => 0
                            [language] =>
                            [has_issues] =>
                            [has_downloads] => 1
                            [has_wiki] => 1
                            [has_pages] =>
                            [forks_count] => 0
                            [mirror_url] =>
                            [open_issues_count] => 0
                            [forks] => 0
                            [open_issues] => 0
                            [watchers] => 0
                            [default_branch] => master
                            [public] => 1
                        )

                )

            [public] => 1
            [created_at] => 2014-11-25T20:22:14Z
            [org] => Array
                (
                    [id] => 956141
                    [login] => cytoscape
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/cytoscape
                    [avatar_url] => https://avatars.githubusercontent.com/u/956141?
                )

        )

    [218] => Array
        (
            [id] => 2426552909
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 21399598
                    [name] => angular/material
                    [url] => https://api.github.com/repos/angular/material
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-11-25T13:28:52Z
            [org] => Array
                (
                    [id] => 139426
                    [login] => angular
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/angular
                    [avatar_url] => https://avatars.githubusercontent.com/u/139426?
                )

        )

    [219] => Array
        (
            [id] => 2426227346
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24947938
                    [name] => neoxygen/graphgen
                    [url] => https://api.github.com/repos/neoxygen/graphgen
                )

            [payload] => Array
                (
                    [push_id] => 509822669
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 8e29e7c9ecb2f1c03ddb7ba5ea035d083636590a
                    [before] => 061a9e9869ab9f2678eb6fcee28524a63b10f158
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 8e29e7c9ecb2f1c03ddb7ba5ea035d083636590a
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => temp fix for local addr in js
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/graphgen/commits/8e29e7c9ecb2f1c03ddb7ba5ea035d083636590a
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-25T10:31:28Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [220] => Array
        (
            [id] => 2423070752
            [type] => IssuesEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 26188076
                    [name] => neoxygen/neo4j-toolkit
                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                )

            [payload] => Array
                (
                    [action] => closed
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/3
                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/3/labels{/name}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/3/comments
                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/3/events
                            [html_url] => https://github.com/neoxygen/neo4j-toolkit/issues/3
                            [id] => 49836915
                            [number] => 3
                            [title] => Starting an instance says instance stopped
                            [user] => Array
                                (
                                    [login] => jeremykendall
                                    [id] => 288613
                                    [avatar_url] => https://avatars.githubusercontent.com/u/288613?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/jeremykendall
                                    [html_url] => https://github.com/jeremykendall
                                    [followers_url] => https://api.github.com/users/jeremykendall/followers
                                    [following_url] => https://api.github.com/users/jeremykendall/following{/other_user}
                                    [gists_url] => https://api.github.com/users/jeremykendall/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/jeremykendall/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/jeremykendall/subscriptions
                                    [organizations_url] => https://api.github.com/users/jeremykendall/orgs
                                    [repos_url] => https://api.github.com/users/jeremykendall/repos
                                    [events_url] => https://api.github.com/users/jeremykendall/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/jeremykendall/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => closed
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 2
                            [created_at] => 2014-11-23T20:00:19Z
                            [updated_at] => 2014-11-23T23:36:16Z
                            [closed_at] => 2014-11-23T23:36:16Z
                            [body] => IO issue when starting instance. See last bit of output in screenshot. Should say "started".
![screenshot 2014-11-23 13 58 12](https://cloud.githubusercontent.com/assets/288613/5158990/03b39c1c-7319-11e4-912d-060daa8cbae7.png)

Instance starts properly. The only issue is the output.

                        )

                )

            [public] => 1
            [created_at] => 2014-11-23T23:36:19Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [221] => Array
        (
            [id] => 2423070716
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 26188076
                    [name] => neoxygen/neo4j-toolkit
                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/3
                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/3/labels{/name}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/3/comments
                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/3/events
                            [html_url] => https://github.com/neoxygen/neo4j-toolkit/issues/3
                            [id] => 49836915
                            [number] => 3
                            [title] => Starting an instance says instance stopped
                            [user] => Array
                                (
                                    [login] => jeremykendall
                                    [id] => 288613
                                    [avatar_url] => https://avatars.githubusercontent.com/u/288613?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/jeremykendall
                                    [html_url] => https://github.com/jeremykendall
                                    [followers_url] => https://api.github.com/users/jeremykendall/followers
                                    [following_url] => https://api.github.com/users/jeremykendall/following{/other_user}
                                    [gists_url] => https://api.github.com/users/jeremykendall/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/jeremykendall/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/jeremykendall/subscriptions
                                    [organizations_url] => https://api.github.com/users/jeremykendall/orgs
                                    [repos_url] => https://api.github.com/users/jeremykendall/repos
                                    [events_url] => https://api.github.com/users/jeremykendall/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/jeremykendall/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => open
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 2
                            [created_at] => 2014-11-23T20:00:19Z
                            [updated_at] => 2014-11-23T23:36:13Z
                            [closed_at] =>
                            [body] => IO issue when starting instance. See last bit of output in screenshot. Should say "started".
![screenshot 2014-11-23 13 58 12](https://cloud.githubusercontent.com/assets/288613/5158990/03b39c1c-7319-11e4-912d-060daa8cbae7.png)

Instance starts properly. The only issue is the output.

                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/comments/64140494
                            [html_url] => https://github.com/neoxygen/neo4j-toolkit/issues/3#issuecomment-64140494
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/3
                            [id] => 64140494
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2014-11-23T23:36:13Z
                            [updated_at] => 2014-11-23T23:36:13Z
                            [body] => Fixed by 6624febaf6f32a822a01316edf24db294f1d71b5
                        )

                )

            [public] => 1
            [created_at] => 2014-11-23T23:36:14Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [222] => Array
        (
            [id] => 2423070388
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 26188076
                    [name] => neoxygen/neo4j-toolkit
                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                )

            [payload] => Array
                (
                    [push_id] => 508466448
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 6624febaf6f32a822a01316edf24db294f1d71b5
                    [before] => 8b993c3a9629aaccdc243401ae0c978ae22e38b2
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 6624febaf6f32a822a01316edf24db294f1d71b5
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => starting an instance shoud output start ipo stopped.
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/commits/6624febaf6f32a822a01316edf24db294f1d71b5
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-23T23:35:42Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [223] => Array
        (
            [id] => 2423069299
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 26188076
                    [name] => neoxygen/neo4j-toolkit
                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/3
                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/3/labels{/name}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/3/comments
                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/3/events
                            [html_url] => https://github.com/neoxygen/neo4j-toolkit/issues/3
                            [id] => 49836915
                            [number] => 3
                            [title] => Starting an instance says instance stopped
                            [user] => Array
                                (
                                    [login] => jeremykendall
                                    [id] => 288613
                                    [avatar_url] => https://avatars.githubusercontent.com/u/288613?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/jeremykendall
                                    [html_url] => https://github.com/jeremykendall
                                    [followers_url] => https://api.github.com/users/jeremykendall/followers
                                    [following_url] => https://api.github.com/users/jeremykendall/following{/other_user}
                                    [gists_url] => https://api.github.com/users/jeremykendall/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/jeremykendall/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/jeremykendall/subscriptions
                                    [organizations_url] => https://api.github.com/users/jeremykendall/orgs
                                    [repos_url] => https://api.github.com/users/jeremykendall/repos
                                    [events_url] => https://api.github.com/users/jeremykendall/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/jeremykendall/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => open
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 1
                            [created_at] => 2014-11-23T20:00:19Z
                            [updated_at] => 2014-11-23T23:34:07Z
                            [closed_at] =>
                            [body] => IO issue when starting instance. See last bit of output in screenshot. Should say "started".
![screenshot 2014-11-23 13 58 12](https://cloud.githubusercontent.com/assets/288613/5158990/03b39c1c-7319-11e4-912d-060daa8cbae7.png)

Instance starts properly. The only issue is the output.

                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/comments/64140424
                            [html_url] => https://github.com/neoxygen/neo4j-toolkit/issues/3#issuecomment-64140424
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/3
                            [id] => 64140424
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2014-11-23T23:34:07Z
                            [updated_at] => 2014-11-23T23:34:07Z
                            [body] => Thank you. Yes comes from copy pasted the class.
                        )

                )

            [public] => 1
            [created_at] => 2014-11-23T23:34:07Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [224] => Array
        (
            [id] => 2423055996
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/9
                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/9/labels{/name}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/9/comments
                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/9/events
                            [html_url] => https://github.com/neoxygen/neo4j-neogen/issues/9
                            [id] => 48219272
                            [number] => 9
                            [title] => Yaml definition does not allow proper tree structure definition
                            [user] => Array
                                (
                                    [login] => Leward
                                    [id] => 1108235
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1108235?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/Leward
                                    [html_url] => https://github.com/Leward
                                    [followers_url] => https://api.github.com/users/Leward/followers
                                    [following_url] => https://api.github.com/users/Leward/following{/other_user}
                                    [gists_url] => https://api.github.com/users/Leward/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/Leward/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/Leward/subscriptions
                                    [organizations_url] => https://api.github.com/users/Leward/orgs
                                    [repos_url] => https://api.github.com/users/Leward/repos
                                    [events_url] => https://api.github.com/users/Leward/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/Leward/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => open
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 2
                            [created_at] => 2014-11-10T00:09:37Z
                            [updated_at] => 2014-11-23T23:16:32Z
                            [closed_at] =>
                            [body] => It is quite easy with the Cypher notation to define tree structure thanks to identifiers:

    (user:User {email:email} *5)
    (user)-[:filespace *1..1]->(fs:FileSpace *5)
    (fs)-[:contains *1..n]->(file:File {name: randomNumber} *10)
    (fs)-[:contains *1..n]->(folder:Folder {name: randomNumber} *5)
    (folder)-[:contains *1..n]->(file2:File {name: randomNumber} *10)

However with Yaml definition it is something else. If we take an example of something that currently as expected:

    connection:
      scheme: http
      host: localhost
      port: 7474

    nodes:
      users:
        label: User
        count: 5
        properties:
          email: email
      fileSpaces:
          label: FileSpace
          count: 5
      files:
          label: File
          count: 10

    relationships:
      fileSpaceRels:
        start: User
        end: FileSpace
        type: FILESPACE
        mode: 1..1
      fileSpaceContainsFiles:
        start: FileSpace
        end: File
        type: CONTAINS
        mode: 1..n

We see that relationships start and end nodes are described based on the label rather than on the identifier like for the Cypher Query. Adding folders in the later example should be quite easy. However, introducing files inside folder is another story as the relationship description will match files at the root and files that should be in folders at the same time.

It is somehow possible to have a tree-like structure by cheating using new intermediate labels for nested files. But it's really messy has we cannot make clean Cypher on that tree afterward:

    connection:
      scheme: http
      host: localhost
      port: 7474

    nodes:
      users:
        label: User
        count: 5
        properties:
          email: email
      fileSpaces:
        label: FileSpace
        count: 5
      files:
        label: File
        count: 10
      folders:
        label: Folder
        count: 5
      firstLvlFiles:
        label: FirstLvlFile
        count: 15

    relationships:
      fileSpaceRels:
        start: User
        end: FileSpace
        type: FILESPACE
        mode: 1..1
      fileSpaceContainsFiles:
        start: FileSpace
        end: File
        type: CONTAINS
        mode: 1..n
      fileSpaceContainsFolders:
        start: FileSpace
        end: Folder
        type: CONTAINS
        mode: 1..n
      foldersContainsFirstLvlFiles:
        start: Folder
        end: FirstLvlFile
        type: CONTAINS
        mode: 1..n
                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/comments/64139788
                            [html_url] => https://github.com/neoxygen/neo4j-neogen/issues/9#issuecomment-64139788
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/9
                            [id] => 64139788
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2014-11-23T23:16:32Z
                            [updated_at] => 2014-11-23T23:16:32Z
                            [body] => Should be fixed now as identifiers are used to identify relationships bound nodes. Can you confirm ?
                        )

                )

            [public] => 1
            [created_at] => 2014-11-23T23:16:32Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [225] => Array
        (
            [id] => 2421163215
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24947938
                    [name] => neoxygen/graphgen
                    [url] => https://api.github.com/repos/neoxygen/graphgen
                )

            [payload] => Array
                (
                    [push_id] => 507599949
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 061a9e9869ab9f2678eb6fcee28524a63b10f158
                    [before] => f678409a4eb936a4d61d0fadbe181035c47a6015
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 061a9e9869ab9f2678eb6fcee28524a63b10f158
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => latest deps update
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/graphgen/commits/061a9e9869ab9f2678eb6fcee28524a63b10f158
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-21T21:32:43Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [226] => Array
        (
            [id] => 2421152830
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [ref] => 0.5.2
                    [ref_type] => tag
                    [master_branch] => master
                    [description] => Easy generation of dummy Neo4j graphs with PHP
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-11-21T21:27:47Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [227] => Array
        (
            [id] => 2421152457
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 507595466
                    [size] => 2
                    [distinct_size] => 0
                    [ref] => refs/heads/master
                    [head] => beff0d30d7a661174a10e9fc10a7592439e7b0c7
                    [before] => 6290af524fa96b0cb4d771107197694a96330549
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => c81fbd5a23131f530d674404b51f5a13e3cb4fae
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => wip better distribution
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/c81fbd5a23131f530d674404b51f5a13e3cb4fae
                                )

                            [1] => Array
                                (
                                    [sha] => beff0d30d7a661174a10e9fc10a7592439e7b0c7
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => implemented proposed distribution from pj
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/beff0d30d7a661174a10e9fc10a7592439e7b0c7
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-21T21:27:37Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [228] => Array
        (
            [id] => 2421150125
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 507594535
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/distribution
                    [head] => beff0d30d7a661174a10e9fc10a7592439e7b0c7
                    [before] => c81fbd5a23131f530d674404b51f5a13e3cb4fae
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => beff0d30d7a661174a10e9fc10a7592439e7b0c7
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => implemented proposed distribution from pj
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/beff0d30d7a661174a10e9fc10a7592439e7b0c7
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-21T21:26:32Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [229] => Array
        (
            [id] => 2421045095
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [ref] => distribution
                    [ref_type] => branch
                    [master_branch] => master
                    [description] => Easy generation of dummy Neo4j graphs with PHP
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-11-21T20:32:29Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [230] => Array
        (
            [id] => 2420882367
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24947938
                    [name] => neoxygen/graphgen
                    [url] => https://api.github.com/repos/neoxygen/graphgen
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/graphgen/issues/2
                            [labels_url] => https://api.github.com/repos/neoxygen/graphgen/issues/2/labels{/name}
                            [comments_url] => https://api.github.com/repos/neoxygen/graphgen/issues/2/comments
                            [events_url] => https://api.github.com/repos/neoxygen/graphgen/issues/2/events
                            [html_url] => https://github.com/neoxygen/graphgen/issues/2
                            [id] => 46954910
                            [number] => 2
                            [title] => Call to the community for Node Types
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => open
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 3
                            [created_at] => 2014-10-27T20:25:39Z
                            [updated_at] => 2014-11-21T19:13:10Z
                            [closed_at] =>
                            [body] => In this issue, people can comment and ask for node types they think could be useful for common graph modelling :

* Person
* Company
* Hashtag
* Tweet
* User
                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/graphgen/issues/comments/64022294
                            [html_url] => https://github.com/neoxygen/graphgen/issues/2#issuecomment-64022294
                            [issue_url] => https://api.github.com/repos/neoxygen/graphgen/issues/2
                            [id] => 64022294
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2014-11-21T19:13:10Z
                            [updated_at] => 2014-11-21T19:13:10Z
                            [body] => File has been implemented
                        )

                )

            [public] => 1
            [created_at] => 2014-11-21T19:13:10Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [231] => Array
        (
            [id] => 2420856903
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24947938
                    [name] => neoxygen/graphgen
                    [url] => https://api.github.com/repos/neoxygen/graphgen
                )

            [payload] => Array
                (
                    [push_id] => 507472063
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => f678409a4eb936a4d61d0fadbe181035c47a6015
                    [before] => b3e2d4870c19f7308ebc774ab75fef4a090d8b8e
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => f678409a4eb936a4d61d0fadbe181035c47a6015
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => updated all
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/graphgen/commits/f678409a4eb936a4d61d0fadbe181035c47a6015
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-21T19:01:25Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [232] => Array
        (
            [id] => 2420849964
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [ref] => 0.5.1
                    [ref_type] => tag
                    [master_branch] => master
                    [description] => Easy generation of dummy Neo4j graphs with PHP
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-11-21T18:58:23Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [233] => Array
        (
            [id] => 2420849155
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 507468988
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 6290af524fa96b0cb4d771107197694a96330549
                    [before] => e0bad78512845f54d629cac5c591d09f730f1090
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 6290af524fa96b0cb4d771107197694a96330549
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => removed omitted print statement
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/6290af524fa96b0cb4d771107197694a96330549
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-21T18:58:12Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [234] => Array
        (
            [id] => 2420762027
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [ref] => 0.5
                    [ref_type] => tag
                    [master_branch] => master
                    [description] => Easy generation of dummy Neo4j graphs with PHP
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-11-21T18:17:29Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [235] => Array
        (
            [id] => 2420759111
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 507432817
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => e0bad78512845f54d629cac5c591d09f730f1090
                    [before] => 4b7d8a658249a49234d48528c2aeb72ca5e30423
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => e0bad78512845f54d629cac5c591d09f730f1090
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added file model
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/e0bad78512845f54d629cac5c591d09f730f1090
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-21T18:16:03Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [236] => Array
        (
            [id] => 2420698828
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 507408079
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 4b7d8a658249a49234d48528c2aeb72ca5e30423
                    [before] => 79e61e71b5adbbb447f0aa5277f7e21ea5b6f386
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 4b7d8a658249a49234d48528c2aeb72ca5e30423
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => adapted doc for last changes
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/4b7d8a658249a49234d48528c2aeb72ca5e30423
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-21T17:46:53Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [237] => Array
        (
            [id] => 2420694634
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 507406326
                    [size] => 1
                    [distinct_size] => 0
                    [ref] => refs/heads/master
                    [head] => 79e61e71b5adbbb447f0aa5277f7e21ea5b6f386
                    [before] => 1c048e4d529c63607639f9b94022adb41363ebd0
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 79e61e71b5adbbb447f0aa5277f7e21ea5b6f386
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed generator using old system
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/79e61e71b5adbbb447f0aa5277f7e21ea5b6f386
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-21T17:44:50Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [238] => Array
        (
            [id] => 2420693537
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [ref] => fix-frank
                    [ref_type] => branch
                    [master_branch] => master
                    [description] => Easy generation of dummy Neo4j graphs with PHP
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-11-21T17:44:18Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [239] => Array
        (
            [id] => 2414805211
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 504934156
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 1c048e4d529c63607639f9b94022adb41363ebd0
                    [before] => ea95b0262742cc294d733f61391c97c5e65ac2cd
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 1c048e4d529c63607639f9b94022adb41363ebd0
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => modified generate-cypher command + fix cs
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/1c048e4d529c63607639f9b94022adb41363ebd0
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-19T12:06:07Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [240] => Array
        (
            [id] => 2414719565
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 504897416
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => ea95b0262742cc294d733f61391c97c5e65ac2cd
                    [before] => 79388da0d59483c30f99545f3261743f72f891c1
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => ea95b0262742cc294d733f61391c97c5e65ac2cd
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed tests
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/ea95b0262742cc294d733f61391c97c5e65ac2cd
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-19T11:17:14Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [241] => Array
        (
            [id] => 2413634755
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 26632902
                    [name] => willdurand/clermontech-workshop-git-deploy
                    [url] => https://api.github.com/repos/willdurand/clermontech-workshop-git-deploy
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-11-18T22:29:51Z
        )

    [242] => Array
        (
            [id] => 2413112589
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [action] => closed
                    [number] => 6
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/6
                            [id] => 23047667
                            [html_url] => https://github.com/neoxygen/neo4j-neogen/pull/6
                            [diff_url] => https://github.com/neoxygen/neo4j-neogen/pull/6.diff
                            [patch_url] => https://github.com/neoxygen/neo4j-neogen/pull/6.patch
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/6
                            [number] => 6
                            [state] => closed
                            [locked] =>
                            [title] => Multi-labels support adding also the possibility to add the MODEL feature
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] => Add support for working with multiple labels. This will introduce the MODEL feature.

1 BC :

* the identifier is now mandatory

The old test suite has to be refactored, there are new test classes for the new functionality
                            [created_at] => 2014-10-20T21:49:05Z
                            [updated_at] => 2014-11-18T18:43:24Z
                            [closed_at] => 2014-11-18T18:43:24Z
                            [merged_at] => 2014-11-18T18:43:24Z
                            [merge_commit_sha] => e341e6388c594c5aab627f7c73c36edd30771b15
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/6/commits
                            [review_comments_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/6/comments
                            [review_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/6/comments
                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/statuses/6078c1abdd87b670047377272cdbdf293fbea16a
                            [head] => Array
                                (
                                    [label] => neoxygen:development
                                    [ref] => development
                                    [sha] => 6078c1abdd87b670047377272cdbdf293fbea16a
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 24678257
                                            [name] => neo4j-neogen
                                            [full_name] => neoxygen/neo4j-neogen
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-neogen
                                            [description] => Easy generation of dummy Neo4j graphs with PHP
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/releases{/id}
                                            [created_at] => 2014-10-01T12:53:28Z
                                            [updated_at] => 2014-11-11T23:34:29Z
                                            [pushed_at] => 2014-11-18T18:43:24Z
                                            [git_url] => git://github.com/neoxygen/neo4j-neogen.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-neogen.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-neogen.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-neogen
                                            [homepage] =>
                                            [size] => 714
                                            [stargazers_count] => 9
                                            [watchers_count] => 9
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 2
                                            [mirror_url] =>
                                            [open_issues_count] => 3
                                            [forks] => 2
                                            [open_issues] => 3
                                            [watchers] => 9
                                            [default_branch] => master
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => neoxygen:master
                                    [ref] => master
                                    [sha] => b2c46fcb2c422b908928d1dbad09a924346756fa
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 24678257
                                            [name] => neo4j-neogen
                                            [full_name] => neoxygen/neo4j-neogen
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-neogen
                                            [description] => Easy generation of dummy Neo4j graphs with PHP
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/releases{/id}
                                            [created_at] => 2014-10-01T12:53:28Z
                                            [updated_at] => 2014-11-11T23:34:29Z
                                            [pushed_at] => 2014-11-18T18:43:24Z
                                            [git_url] => git://github.com/neoxygen/neo4j-neogen.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-neogen.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-neogen.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-neogen
                                            [homepage] =>
                                            [size] => 714
                                            [stargazers_count] => 9
                                            [watchers_count] => 9
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 2
                                            [mirror_url] =>
                                            [open_issues_count] => 3
                                            [forks] => 2
                                            [open_issues] => 3
                                            [watchers] => 9
                                            [default_branch] => master
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/6
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neoxygen/neo4j-neogen/pull/6
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/6
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/6/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/6/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/6/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/statuses/6078c1abdd87b670047377272cdbdf293fbea16a
                                        )

                                )

                            [merged] => 1
                            [mergeable] =>
                            [mergeable_state] => unknown
                            [merged_by] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [comments] => 0
                            [review_comments] => 0
                            [commits] => 18
                            [additions] => 771
                            [deletions] => 327
                            [changed_files] => 27
                        )

                )

            [public] => 1
            [created_at] => 2014-11-18T18:43:24Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [243] => Array
        (
            [id] => 2413112583
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 504217203
                    [size] => 19
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 79388da0d59483c30f99545f3261743f72f891c1
                    [before] => a4ba7c7ec70c0f6b6367f73eb1369d14cd6407d6
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => b52e5a43ee506016ab41117320a0d3965f83a953
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => new cypher pattern parser
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/b52e5a43ee506016ab41117320a0d3965f83a953
                                )

                            [1] => Array
                                (
                                    [sha] => 16d4f225540dbafb7f0865e3234e312490384ade
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => refactoring until graphjson
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/16d4f225540dbafb7f0865e3234e312490384ade
                                )

                            [2] => Array
                                (
                                    [sha] => 3b6064b38c4f38fe171ceda04f6f81dd89dcb2bf
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed old label definitions to identifiers
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/3b6064b38c4f38fe171ceda04f6f81dd89dcb2bf
                                )

                            [3] => Array
                                (
                                    [sha] => f104b7eb84418ec6f4bfec23352487f29e5ee1fe
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => Standard Cypher Converter in sync with multilabels feature
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/f104b7eb84418ec6f4bfec23352487f29e5ee1fe
                                )

                            [4] => Array
                                (
                                    [sha] => 66b9cd806779bde6c480ab6ce16009a1c39146b8
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => some first changes to the popultor
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/66b9cd806779bde6c480ab6ce16009a1c39146b8
                                )

                            [5] => Array
                                (
                                    [sha] => dc36405ea3acc96b53a2c349bfe6a3259c86743a
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => unwind statements converter now ops
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/dc36405ea3acc96b53a2c349bfe6a3259c86743a
                                )

                            [6] => Array
                                (
                                    [sha] => a03db9a220ebf5a610e56ef5755846b5f538021c
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added model layer
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/a03db9a220ebf5a610e56ef5755846b5f538021c
                                )

                            [7] => Array
                                (
                                    [sha] => e8ac6ff746a2f3385ef60597005c355855dea14c
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => removed omitted print statements
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/e8ac6ff746a2f3385ef60597005c355855dea14c
                                )

                            [8] => Array
                                (
                                    [sha] => 2cefff1660669cb456f7e3c4acb860846227a249
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => removed name from user as it is not part of the system
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/2cefff1660669cb456f7e3c4acb860846227a249
                                )

                            [9] => Array
                                (
                                    [sha] => d40c9f205583117f60e1e70fe7a23193292a6940
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added Tweet to the social model
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/d40c9f205583117f60e1e70fe7a23193292a6940
                                )

                            [10] => Array
                                (
                                    [sha] => 7bd2ab2aebc9fe8374c896f0fc36beaafce58d26
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => user use sha1 pwd
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/7bd2ab2aebc9fe8374c896f0fc36beaafce58d26
                                )

                            [11] => Array
                                (
                                    [sha] => 47708bfbcef94c3cb26fbf85744b33cea8311a59
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fix password faker
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/47708bfbcef94c3cb26fbf85744b33cea8311a59
                                )

                            [12] => Array
                                (
                                    [sha] => 77aff8362e2190693115c45e30d4be7165ac1a99
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => The hash now is an activator for the model layer
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/77aff8362e2190693115c45e30d4be7165ac1a99
                                )

                            [13] => Array
                                (
                                    [sha] => d9a0df502914b33b5989be587a63e849d81d8772
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added condition in 1..1 if start and end are same nodes
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/d9a0df502914b33b5989be587a63e849d81d8772
                                )

                            [14] => Array
                                (
                                    [sha] => 09b00da176a36b8eec32559f55159687ac9a52a3
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added precalculation tests
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/09b00da176a36b8eec32559f55159687ac9a52a3
                                )

                            [15] => Array
                                (
                                    [sha] => bfe3cb0498bcbcb62610f4be25027c255992fefa
                                    [author] => Array
                                        (
                                            [email] => pj82491@gmail.com
                                            [name] => Paul-Julien
                                        )

                                    [message] => Added support of Cypher to desbribe schema in command line
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/bfe3cb0498bcbcb62610f4be25027c255992fefa
                                )

                            [16] => Array
                                (
                                    [sha] => a1303646a6a3878a6f7cc86ecfd6f244b6427609
                                    [author] => Array
                                        (
                                            [email] => pj82491@gmail.com
                                            [name] => Paul-Julien
                                        )

                                    [message] => Fix for PHP 5.4 support
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/a1303646a6a3878a6f7cc86ecfd6f244b6427609
                                )

                            [17] => Array
                                (
                                    [sha] => 6078c1abdd87b670047377272cdbdf293fbea16a
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed tests
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/6078c1abdd87b670047377272cdbdf293fbea16a
                                )

                            [18] => Array
                                (
                                    [sha] => 79388da0d59483c30f99545f3261743f72f891c1
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => Merge branch 'development'

Conflicts:
	composer.lock
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/79388da0d59483c30f99545f3261743f72f891c1
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-18T18:43:24Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [244] => Array
        (
            [id] => 2413105630
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 504214441
                    [size] => 3
                    [distinct_size] => 0
                    [ref] => refs/heads/development
                    [head] => 6078c1abdd87b670047377272cdbdf293fbea16a
                    [before] => 09b00da176a36b8eec32559f55159687ac9a52a3
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => bfe3cb0498bcbcb62610f4be25027c255992fefa
                                    [author] => Array
                                        (
                                            [email] => pj82491@gmail.com
                                            [name] => Paul-Julien
                                        )

                                    [message] => Added support of Cypher to desbribe schema in command line
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/bfe3cb0498bcbcb62610f4be25027c255992fefa
                                )

                            [1] => Array
                                (
                                    [sha] => a1303646a6a3878a6f7cc86ecfd6f244b6427609
                                    [author] => Array
                                        (
                                            [email] => pj82491@gmail.com
                                            [name] => Paul-Julien
                                        )

                                    [message] => Fix for PHP 5.4 support
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/a1303646a6a3878a6f7cc86ecfd6f244b6427609
                                )

                            [2] => Array
                                (
                                    [sha] => 6078c1abdd87b670047377272cdbdf293fbea16a
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed tests
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/6078c1abdd87b670047377272cdbdf293fbea16a
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-18T18:40:28Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [245] => Array
        (
            [id] => 2413105628
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [action] => closed
                    [number] => 10
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/10
                            [id] => 24169617
                            [html_url] => https://github.com/neoxygen/neo4j-neogen/pull/10
                            [diff_url] => https://github.com/neoxygen/neo4j-neogen/pull/10.diff
                            [patch_url] => https://github.com/neoxygen/neo4j-neogen/pull/10.patch
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/10
                            [number] => 10
                            [state] => closed
                            [locked] =>
                            [title] => Added support of Cypher to desbribe schema in command line
                            [user] => Array
                                (
                                    [login] => Leward
                                    [id] => 1108235
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1108235?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/Leward
                                    [html_url] => https://github.com/Leward
                                    [followers_url] => https://api.github.com/users/Leward/followers
                                    [following_url] => https://api.github.com/users/Leward/following{/other_user}
                                    [gists_url] => https://api.github.com/users/Leward/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/Leward/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/Leward/subscriptions
                                    [organizations_url] => https://api.github.com/users/Leward/orgs
                                    [repos_url] => https://api.github.com/users/Leward/repos
                                    [events_url] => https://api.github.com/users/Leward/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/Leward/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] => It now possible to use cypher query to describe schema using the command line. However cypher mode does not support export to running database.

Added commands:
 * generate-cypher
 * init-cypher
                            [created_at] => 2014-11-10T19:11:37Z
                            [updated_at] => 2014-11-18T18:40:27Z
                            [closed_at] => 2014-11-18T18:40:27Z
                            [merged_at] => 2014-11-18T18:40:27Z
                            [merge_commit_sha] => 16da54e7234d751c552bee2f354e8ee3c19dba8b
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/10/commits
                            [review_comments_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/10/comments
                            [review_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/10/comments
                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/statuses/a1303646a6a3878a6f7cc86ecfd6f244b6427609
                            [head] => Array
                                (
                                    [label] => Leward:feature_cypher_cmd
                                    [ref] => feature_cypher_cmd
                                    [sha] => a1303646a6a3878a6f7cc86ecfd6f244b6427609
                                    [user] => Array
                                        (
                                            [login] => Leward
                                            [id] => 1108235
                                            [avatar_url] => https://avatars.githubusercontent.com/u/1108235?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/Leward
                                            [html_url] => https://github.com/Leward
                                            [followers_url] => https://api.github.com/users/Leward/followers
                                            [following_url] => https://api.github.com/users/Leward/following{/other_user}
                                            [gists_url] => https://api.github.com/users/Leward/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/Leward/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/Leward/subscriptions
                                            [organizations_url] => https://api.github.com/users/Leward/orgs
                                            [repos_url] => https://api.github.com/users/Leward/repos
                                            [events_url] => https://api.github.com/users/Leward/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/Leward/received_events
                                            [type] => User
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 26375827
                                            [name] => neo4j-neogen
                                            [full_name] => Leward/neo4j-neogen
                                            [owner] => Array
                                                (
                                                    [login] => Leward
                                                    [id] => 1108235
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/1108235?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/Leward
                                                    [html_url] => https://github.com/Leward
                                                    [followers_url] => https://api.github.com/users/Leward/followers
                                                    [following_url] => https://api.github.com/users/Leward/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/Leward/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/Leward/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/Leward/subscriptions
                                                    [organizations_url] => https://api.github.com/users/Leward/orgs
                                                    [repos_url] => https://api.github.com/users/Leward/repos
                                                    [events_url] => https://api.github.com/users/Leward/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/Leward/received_events
                                                    [type] => User
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/Leward/neo4j-neogen
                                            [description] => Easy generation of dummy Neo4j graphs with PHP
                                            [fork] => 1
                                            [url] => https://api.github.com/repos/Leward/neo4j-neogen
                                            [forks_url] => https://api.github.com/repos/Leward/neo4j-neogen/forks
                                            [keys_url] => https://api.github.com/repos/Leward/neo4j-neogen/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/Leward/neo4j-neogen/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/Leward/neo4j-neogen/teams
                                            [hooks_url] => https://api.github.com/repos/Leward/neo4j-neogen/hooks
                                            [issue_events_url] => https://api.github.com/repos/Leward/neo4j-neogen/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/Leward/neo4j-neogen/events
                                            [assignees_url] => https://api.github.com/repos/Leward/neo4j-neogen/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/Leward/neo4j-neogen/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/Leward/neo4j-neogen/tags
                                            [blobs_url] => https://api.github.com/repos/Leward/neo4j-neogen/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/Leward/neo4j-neogen/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/Leward/neo4j-neogen/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/Leward/neo4j-neogen/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/Leward/neo4j-neogen/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/Leward/neo4j-neogen/languages
                                            [stargazers_url] => https://api.github.com/repos/Leward/neo4j-neogen/stargazers
                                            [contributors_url] => https://api.github.com/repos/Leward/neo4j-neogen/contributors
                                            [subscribers_url] => https://api.github.com/repos/Leward/neo4j-neogen/subscribers
                                            [subscription_url] => https://api.github.com/repos/Leward/neo4j-neogen/subscription
                                            [commits_url] => https://api.github.com/repos/Leward/neo4j-neogen/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/Leward/neo4j-neogen/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/Leward/neo4j-neogen/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/Leward/neo4j-neogen/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/Leward/neo4j-neogen/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/Leward/neo4j-neogen/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/Leward/neo4j-neogen/merges
                                            [archive_url] => https://api.github.com/repos/Leward/neo4j-neogen/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/Leward/neo4j-neogen/downloads
                                            [issues_url] => https://api.github.com/repos/Leward/neo4j-neogen/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/Leward/neo4j-neogen/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/Leward/neo4j-neogen/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/Leward/neo4j-neogen/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/Leward/neo4j-neogen/labels{/name}
                                            [releases_url] => https://api.github.com/repos/Leward/neo4j-neogen/releases{/id}
                                            [created_at] => 2014-11-08T21:46:20Z
                                            [updated_at] => 2014-11-09T21:48:51Z
                                            [pushed_at] => 2014-11-12T08:53:42Z
                                            [git_url] => git://github.com/Leward/neo4j-neogen.git
                                            [ssh_url] => git@github.com:Leward/neo4j-neogen.git
                                            [clone_url] => https://github.com/Leward/neo4j-neogen.git
                                            [svn_url] => https://github.com/Leward/neo4j-neogen
                                            [homepage] =>
                                            [size] => 223
                                            [stargazers_count] => 0
                                            [watchers_count] => 0
                                            [language] => PHP
                                            [has_issues] =>
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 0
                                            [mirror_url] =>
                                            [open_issues_count] => 0
                                            [forks] => 0
                                            [open_issues] => 0
                                            [watchers] => 0
                                            [default_branch] => master
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => neoxygen:development
                                    [ref] => development
                                    [sha] => 09b00da176a36b8eec32559f55159687ac9a52a3
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 24678257
                                            [name] => neo4j-neogen
                                            [full_name] => neoxygen/neo4j-neogen
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-neogen
                                            [description] => Easy generation of dummy Neo4j graphs with PHP
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/releases{/id}
                                            [created_at] => 2014-10-01T12:53:28Z
                                            [updated_at] => 2014-11-11T23:34:29Z
                                            [pushed_at] => 2014-11-18T18:40:27Z
                                            [git_url] => git://github.com/neoxygen/neo4j-neogen.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-neogen.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-neogen.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-neogen
                                            [homepage] =>
                                            [size] => 714
                                            [stargazers_count] => 9
                                            [watchers_count] => 9
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 2
                                            [mirror_url] =>
                                            [open_issues_count] => 4
                                            [forks] => 2
                                            [open_issues] => 4
                                            [watchers] => 9
                                            [default_branch] => master
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/10
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neoxygen/neo4j-neogen/pull/10
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/10
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/10/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/10/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/10/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/statuses/a1303646a6a3878a6f7cc86ecfd6f244b6427609
                                        )

                                )

                            [merged] => 1
                            [mergeable] =>
                            [mergeable_state] => unknown
                            [merged_by] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [comments] => 0
                            [review_comments] => 0
                            [commits] => 2
                            [additions] => 123
                            [deletions] => 3
                            [changed_files] => 6
                        )

                )

            [public] => 1
            [created_at] => 2014-11-18T18:40:28Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [246] => Array
        (
            [id] => 2413103345
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [ref] => feature_cypher_cmd
                    [ref_type] => branch
                    [master_branch] => master
                    [description] => Easy generation of dummy Neo4j graphs with PHP
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-11-18T18:39:34Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [247] => Array
        (
            [id] => 2409861079
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24650339
                    [name] => google/physical-web
                    [url] => https://api.github.com/repos/google/physical-web
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-11-17T14:20:06Z
            [org] => Array
                (
                    [id] => 1342004
                    [login] => google
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/google
                    [avatar_url] => https://avatars.githubusercontent.com/u/1342004?
                )

        )

    [248] => Array
        (
            [id] => 2408703559
            [type] => IssuesEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 1872943
                    [name] => composer/packagist
                    [url] => https://api.github.com/repos/composer/packagist
                )

            [payload] => Array
                (
                    [action] => closed
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/composer/packagist/issues/443
                            [labels_url] => https://api.github.com/repos/composer/packagist/issues/443/labels{/name}
                            [comments_url] => https://api.github.com/repos/composer/packagist/issues/443/comments
                            [events_url] => https://api.github.com/repos/composer/packagist/issues/443/events
                            [html_url] => https://github.com/composer/packagist/issues/443
                            [id] => 42194347
                            [number] => 443
                            [title] => [FeatureRequest] Returns the number of downloads by Version
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                    [0] => Array
                                        (
                                            [url] => https://api.github.com/repos/composer/packagist/labels/Feature
                                            [name] => Feature
                                            [color] => 02e10c
                                        )

                                )

                            [state] => closed
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 6
                            [created_at] => 2014-09-08T13:13:03Z
                            [updated_at] => 2014-11-16T21:34:51Z
                            [closed_at] => 2014-11-16T21:34:51Z
                            [body] => Hello,

It would be nice if we can return the amount of downloads by version of packages, maybe not for the presentation on the packagist website, but at least at the json api package endpoint.

If you agree on this, I can work on making a P.R.

Cheers,

Chris
                        )

                )

            [public] => 1
            [created_at] => 2014-11-16T21:34:51Z
            [org] => Array
                (
                    [id] => 837015
                    [login] => composer
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/composer
                    [avatar_url] => https://avatars.githubusercontent.com/u/837015?
                )

        )

    [249] => Array
        (
            [id] => 2408703557
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 1872943
                    [name] => composer/packagist
                    [url] => https://api.github.com/repos/composer/packagist
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/composer/packagist/issues/443
                            [labels_url] => https://api.github.com/repos/composer/packagist/issues/443/labels{/name}
                            [comments_url] => https://api.github.com/repos/composer/packagist/issues/443/comments
                            [events_url] => https://api.github.com/repos/composer/packagist/issues/443/events
                            [html_url] => https://github.com/composer/packagist/issues/443
                            [id] => 42194347
                            [number] => 443
                            [title] => [FeatureRequest] Returns the number of downloads by Version
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                    [0] => Array
                                        (
                                            [url] => https://api.github.com/repos/composer/packagist/labels/Feature
                                            [name] => Feature
                                            [color] => 02e10c
                                        )

                                )

                            [state] => closed
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 6
                            [created_at] => 2014-09-08T13:13:03Z
                            [updated_at] => 2014-11-16T21:34:51Z
                            [closed_at] => 2014-11-16T21:34:51Z
                            [body] => Hello,

It would be nice if we can return the amount of downloads by version of packages, maybe not for the presentation on the packagist website, but at least at the json api package endpoint.

If you agree on this, I can work on making a P.R.

Cheers,

Chris
                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/composer/packagist/issues/comments/63240635
                            [html_url] => https://github.com/composer/packagist/issues/443#issuecomment-63240635
                            [issue_url] => https://api.github.com/repos/composer/packagist/issues/443
                            [id] => 63240635
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2014-11-16T21:34:51Z
                            [updated_at] => 2014-11-16T21:34:51Z
                            [body] => Right ;-) Thanks.
                        )

                )

            [public] => 1
            [created_at] => 2014-11-16T21:34:51Z
            [org] => Array
                (
                    [id] => 837015
                    [login] => composer
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/composer
                    [avatar_url] => https://avatars.githubusercontent.com/u/837015?
                )

        )

    [250] => Array
        (
            [id] => 2408335717
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 17269720
                    [name] => zivpug/Cytoscape-simple-directive
                    [url] => https://api.github.com/repos/zivpug/Cytoscape-simple-directive
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-11-16T13:11:37Z
        )

    [251] => Array
        (
            [id] => 2407960023
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 23319260
                    [name] => maxkfranz/WebCola
                    [url] => https://api.github.com/repos/maxkfranz/WebCola
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-11-16T00:28:18Z
        )

    [252] => Array
        (
            [id] => 2407959983
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 16078488
                    [name] => cytoscape/cytoscape.js-edgehandles
                    [url] => https://api.github.com/repos/cytoscape/cytoscape.js-edgehandles
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-11-16T00:28:13Z
            [org] => Array
                (
                    [id] => 956141
                    [login] => cytoscape
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/cytoscape
                    [avatar_url] => https://avatars.githubusercontent.com/u/956141?
                )

        )

    [253] => Array
        (
            [id] => 2406869690
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 8654803
                    [name] => 1up-lab/OneupUploaderBundle
                    [url] => https://api.github.com/repos/1up-lab/OneupUploaderBundle
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-11-14T22:13:01Z
            [org] => Array
                (
                    [id] => 755324
                    [login] => 1up-lab
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/1up-lab
                    [avatar_url] => https://avatars.githubusercontent.com/u/755324?
                )

        )

    [254] => Array
        (
            [id] => 2403538957
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 17630765
                    [name] => grom358/pharborist
                    [url] => https://api.github.com/repos/grom358/pharborist
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-11-13T15:57:47Z
        )

    [255] => Array
        (
            [id] => 2396899248
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 17814354
                    [name] => lhorie/mithril.js
                    [url] => https://api.github.com/repos/lhorie/mithril.js
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-11-10T23:29:42Z
        )

    [256] => Array
        (
            [id] => 2394698103
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 21350783
                    [name] => graphaware/neo4j-changefeed
                    [url] => https://api.github.com/repos/graphaware/neo4j-changefeed
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/graphaware/neo4j-changefeed/issues/3
                            [labels_url] => https://api.github.com/repos/graphaware/neo4j-changefeed/issues/3/labels{/name}
                            [comments_url] => https://api.github.com/repos/graphaware/neo4j-changefeed/issues/3/comments
                            [events_url] => https://api.github.com/repos/graphaware/neo4j-changefeed/issues/3/events
                            [html_url] => https://github.com/graphaware/neo4j-changefeed/issues/3
                            [id] => 48097402
                            [number] => 3
                            [title] => Performance testing question
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => closed
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 2
                            [created_at] => 2014-11-07T15:54:08Z
                            [updated_at] => 2014-11-10T01:01:41Z
                            [closed_at] => 2014-11-10T00:16:41Z
                            [body] => Hi all,

I would like to show up a demo app using this extension. Basically looking at the output format received from your endpoint, it looks like I can easily match patterns using the parser developed for Grahgen.

It would serve as post-processing actions, like executing a script, sending an e-mail when a pattern is matched, or other funny use cases.

In a simple UI, you could add rules for matched patterns (and write it like on graphgen) , for e.g. orders on unavailable products, unregistered users visit secure pages, ... and it adds a post-processing detection layer and is non-breaking for the user experience.

I received btw a question from someone, how is this module reacting on for e.g. 3000/4000 req/s ?

Thanks


Chris





                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/graphaware/neo4j-changefeed/issues/comments/62328921
                            [html_url] => https://github.com/graphaware/neo4j-changefeed/issues/3#issuecomment-62328921
                            [issue_url] => https://api.github.com/repos/graphaware/neo4j-changefeed/issues/3
                            [id] => 62328921
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2014-11-10T01:01:41Z
                            [updated_at] => 2014-11-10T01:01:41Z
                            [body] => Thanks Michal for the response.
                        )

                )

            [public] => 1
            [created_at] => 2014-11-10T01:01:41Z
            [org] => Array
                (
                    [id] => 4264299
                    [login] => graphaware
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/graphaware
                    [avatar_url] => https://avatars.githubusercontent.com/u/4264299?
                )

        )

    [257] => Array
        (
            [id] => 2394667186
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 25180043
                    [name] => GraphStory/graph-kit-php
                    [url] => https://api.github.com/repos/GraphStory/graph-kit-php
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/GraphStory/graph-kit-php/issues/20
                            [labels_url] => https://api.github.com/repos/GraphStory/graph-kit-php/issues/20/labels{/name}
                            [comments_url] => https://api.github.com/repos/GraphStory/graph-kit-php/issues/20/comments
                            [events_url] => https://api.github.com/repos/GraphStory/graph-kit-php/issues/20/events
                            [html_url] => https://github.com/GraphStory/graph-kit-php/pull/20
                            [id] => 47450811
                            [number] => 20
                            [title] => refactored app bootstrap
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => open
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 16
                            [created_at] => 2014-10-31T22:32:13Z
                            [updated_at] => 2014-11-10T00:17:02Z
                            [closed_at] =>
                            [pull_request] => Array
                                (
                                    [url] => https://api.github.com/repos/GraphStory/graph-kit-php/pulls/20
                                    [html_url] => https://github.com/GraphStory/graph-kit-php/pull/20
                                    [diff_url] => https://github.com/GraphStory/graph-kit-php/pull/20.diff
                                    [patch_url] => https://github.com/GraphStory/graph-kit-php/pull/20.patch
                                )

                            [body] => What do you think about this kind of index.php refactoring ?

Also I added an index_dev.php that can only be run in local env.

@guillermoandrae pls check boostrap phpunit to see if you're ok
                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/GraphStory/graph-kit-php/issues/comments/62327080
                            [html_url] => https://github.com/GraphStory/graph-kit-php/pull/20#issuecomment-62327080
                            [issue_url] => https://api.github.com/repos/GraphStory/graph-kit-php/issues/20
                            [id] => 62327080
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2014-11-10T00:17:02Z
                            [updated_at] => 2014-11-10T00:17:02Z
                            [body] => @jeremykendall I'm happy you do it ;-)
                        )

                )

            [public] => 1
            [created_at] => 2014-11-10T00:17:02Z
            [org] => Array
                (
                    [id] => 7378594
                    [login] => GraphStory
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/GraphStory
                    [avatar_url] => https://avatars.githubusercontent.com/u/7378594?
                )

        )

    [258] => Array
        (
            [id] => 2394664939
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/9
                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/9/labels{/name}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/9/comments
                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/9/events
                            [html_url] => https://github.com/neoxygen/neo4j-neogen/issues/9
                            [id] => 48219272
                            [number] => 9
                            [title] => Yaml definition does not allow proper tree structure definition
                            [user] => Array
                                (
                                    [login] => Leward
                                    [id] => 1108235
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1108235?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/Leward
                                    [html_url] => https://github.com/Leward
                                    [followers_url] => https://api.github.com/users/Leward/followers
                                    [following_url] => https://api.github.com/users/Leward/following{/other_user}
                                    [gists_url] => https://api.github.com/users/Leward/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/Leward/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/Leward/subscriptions
                                    [organizations_url] => https://api.github.com/users/Leward/orgs
                                    [repos_url] => https://api.github.com/users/Leward/repos
                                    [events_url] => https://api.github.com/users/Leward/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/Leward/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => open
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 1
                            [created_at] => 2014-11-10T00:09:37Z
                            [updated_at] => 2014-11-10T00:13:41Z
                            [closed_at] =>
                            [body] => It is quite easy with the Cypher notation to define tree structure thanks to identifiers:

    (user:User {email:email} *5)
    (user)-[:filespace *1..1]->(fs:FileSpace *5)
    (fs)-[:contains *1..n]->(file:File {name: randomNumber} *10)
    (fs)-[:contains *1..n]->(folder:Folder {name: randomNumber} *5)
    (folder)-[:contains *1..n]->(file2:File {name: randomNumber} *10)

However with Yaml definition it is something else. If we take an example of something that currently as expected:

    connection:
      scheme: http
      host: localhost
      port: 7474

    nodes:
      users:
        label: User
        count: 5
        properties:
          email: email
      fileSpaces:
          label: FileSpace
          count: 5
      files:
          label: File
          count: 10

    relationships:
      fileSpaceRels:
        start: User
        end: FileSpace
        type: FILESPACE
        mode: 1..1
      fileSpaceContainsFiles:
        start: FileSpace
        end: File
        type: CONTAINS
        mode: 1..n

We see that relationships start and end nodes are described based on the label rather than on the identifier like for the Cypher Query. Adding folders in the later example should be quite easy. However, introducing files inside folder is another story as the relationship description will match files at the root and files that should be in folders at the same time.

It is somehow possible to have a tree-like structure by cheating using new intermediate labels for nested files. But it's really messy has we cannot make clean Cypher on that tree afterward:

    connection:
      scheme: http
      host: localhost
      port: 7474

    nodes:
      users:
        label: User
        count: 5
        properties:
          email: email
      fileSpaces:
        label: FileSpace
        count: 5
      files:
        label: File
        count: 10
      folders:
        label: Folder
        count: 5
      firstLvlFiles:
        label: FirstLvlFile
        count: 15

    relationships:
      fileSpaceRels:
        start: User
        end: FileSpace
        type: FILESPACE
        mode: 1..1
      fileSpaceContainsFiles:
        start: FileSpace
        end: File
        type: CONTAINS
        mode: 1..n
      fileSpaceContainsFolders:
        start: FileSpace
        end: Folder
        type: CONTAINS
        mode: 1..n
      foldersContainsFirstLvlFiles:
        start: Folder
        end: FirstLvlFile
        type: CONTAINS
        mode: 1..n
                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/comments/62326947
                            [html_url] => https://github.com/neoxygen/neo4j-neogen/issues/9#issuecomment-62326947
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/9
                            [id] => 62326947
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2014-11-10T00:13:41Z
                            [updated_at] => 2014-11-10T00:13:41Z
                            [body] => True,

The Yaml definition is currently not in sync with the Cypher version. On the list.
                        )

                )

            [public] => 1
            [created_at] => 2014-11-10T00:13:41Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [259] => Array
        (
            [id] => 2394600162
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 22397486
                    [name] => ikwattro/gh4j
                    [url] => https://api.github.com/repos/ikwattro/gh4j
                )

            [payload] => Array
                (
                    [push_id] => 496324570
                    [size] => 2
                    [distinct_size] => 2
                    [ref] => refs/heads/master
                    [head] => e771687938f508eb4fd7b8c518195bd69fdd00c8
                    [before] => 6919864f1afc20a9fa34e4ad2824f264adf5a069
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => ce60b421a34d37a898d6bb0a1a74289223f0c32c
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => modified to use last client
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/gh4j/commits/ce60b421a34d37a898d6bb0a1a74289223f0c32c
                                )

                            [1] => Array
                                (
                                    [sha] => e771687938f508eb4fd7b8c518195bd69fdd00c8
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added test datz
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/ikwattro/gh4j/commits/e771687938f508eb4fd7b8c518195bd69fdd00c8
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-09T22:43:06Z
        )

    [260] => Array
        (
            [id] => 2394576000
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 496312519
                    [size] => 2
                    [distinct_size] => 2
                    [ref] => refs/heads/master
                    [head] => a4ba7c7ec70c0f6b6367f73eb1369d14cd6407d6
                    [before] => 6887f37e903bba8b79c55d202fbf7a9d53736e37
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 33ba7d798df8171a88fa71240236801e9c9d60fe
                                    [author] => Array
                                        (
                                            [email] => pj82491@gmail.com
                                            [name] => Paul-Julien
                                        )

                                    [message] => Relationships with no properties defined are no longer ignored
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/33ba7d798df8171a88fa71240236801e9c9d60fe
                                )

                            [1] => Array
                                (
                                    [sha] => a4ba7c7ec70c0f6b6367f73eb1369d14cd6407d6
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => Merge pull request #7 from Leward/master

Relationships with no properties defined are no longer ignored
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/a4ba7c7ec70c0f6b6367f73eb1369d14cd6407d6
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-09T22:10:27Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [261] => Array
        (
            [id] => 2394575984
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [action] => closed
                    [number] => 7
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/7
                            [id] => 24119751
                            [html_url] => https://github.com/neoxygen/neo4j-neogen/pull/7
                            [diff_url] => https://github.com/neoxygen/neo4j-neogen/pull/7.diff
                            [patch_url] => https://github.com/neoxygen/neo4j-neogen/pull/7.patch
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/7
                            [number] => 7
                            [state] => closed
                            [locked] =>
                            [title] => Relationships with no properties defined are no longer ignored
                            [user] => Array
                                (
                                    [login] => Leward
                                    [id] => 1108235
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1108235?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/Leward
                                    [html_url] => https://github.com/Leward
                                    [followers_url] => https://api.github.com/users/Leward/followers
                                    [following_url] => https://api.github.com/users/Leward/following{/other_user}
                                    [gists_url] => https://api.github.com/users/Leward/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/Leward/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/Leward/subscriptions
                                    [organizations_url] => https://api.github.com/users/Leward/orgs
                                    [repos_url] => https://api.github.com/users/Leward/repos
                                    [events_url] => https://api.github.com/users/Leward/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/Leward/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] => When using the following YAML configuration, the edges were not added to the graph. The PR fixes this issue:

    connection:
      scheme: http
      host: localhost
      port: 7474

    nodes:
      users:
        label: User
        count: 5
        properties:
          email: email

      fileSpaces:
          label: FileSpace
          count: 5

    relationships:
      fileSpaceRels:
        start: User
        end: FileSpace
        type: FILESPACE
        mode: 1..1
                            [created_at] => 2014-11-09T21:52:05Z
                            [updated_at] => 2014-11-09T22:10:27Z
                            [closed_at] => 2014-11-09T22:10:26Z
                            [merged_at] => 2014-11-09T22:10:26Z
                            [merge_commit_sha] => 0a1832d925413d236939beafa8c09259b3add20f
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/7/commits
                            [review_comments_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/7/comments
                            [review_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/7/comments
                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/statuses/33ba7d798df8171a88fa71240236801e9c9d60fe
                            [head] => Array
                                (
                                    [label] => Leward:master
                                    [ref] => master
                                    [sha] => 33ba7d798df8171a88fa71240236801e9c9d60fe
                                    [user] => Array
                                        (
                                            [login] => Leward
                                            [id] => 1108235
                                            [avatar_url] => https://avatars.githubusercontent.com/u/1108235?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/Leward
                                            [html_url] => https://github.com/Leward
                                            [followers_url] => https://api.github.com/users/Leward/followers
                                            [following_url] => https://api.github.com/users/Leward/following{/other_user}
                                            [gists_url] => https://api.github.com/users/Leward/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/Leward/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/Leward/subscriptions
                                            [organizations_url] => https://api.github.com/users/Leward/orgs
                                            [repos_url] => https://api.github.com/users/Leward/repos
                                            [events_url] => https://api.github.com/users/Leward/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/Leward/received_events
                                            [type] => User
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 26375827
                                            [name] => neo4j-neogen
                                            [full_name] => Leward/neo4j-neogen
                                            [owner] => Array
                                                (
                                                    [login] => Leward
                                                    [id] => 1108235
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/1108235?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/Leward
                                                    [html_url] => https://github.com/Leward
                                                    [followers_url] => https://api.github.com/users/Leward/followers
                                                    [following_url] => https://api.github.com/users/Leward/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/Leward/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/Leward/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/Leward/subscriptions
                                                    [organizations_url] => https://api.github.com/users/Leward/orgs
                                                    [repos_url] => https://api.github.com/users/Leward/repos
                                                    [events_url] => https://api.github.com/users/Leward/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/Leward/received_events
                                                    [type] => User
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/Leward/neo4j-neogen
                                            [description] => Easy generation of dummy Neo4j graphs with PHP
                                            [fork] => 1
                                            [url] => https://api.github.com/repos/Leward/neo4j-neogen
                                            [forks_url] => https://api.github.com/repos/Leward/neo4j-neogen/forks
                                            [keys_url] => https://api.github.com/repos/Leward/neo4j-neogen/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/Leward/neo4j-neogen/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/Leward/neo4j-neogen/teams
                                            [hooks_url] => https://api.github.com/repos/Leward/neo4j-neogen/hooks
                                            [issue_events_url] => https://api.github.com/repos/Leward/neo4j-neogen/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/Leward/neo4j-neogen/events
                                            [assignees_url] => https://api.github.com/repos/Leward/neo4j-neogen/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/Leward/neo4j-neogen/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/Leward/neo4j-neogen/tags
                                            [blobs_url] => https://api.github.com/repos/Leward/neo4j-neogen/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/Leward/neo4j-neogen/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/Leward/neo4j-neogen/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/Leward/neo4j-neogen/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/Leward/neo4j-neogen/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/Leward/neo4j-neogen/languages
                                            [stargazers_url] => https://api.github.com/repos/Leward/neo4j-neogen/stargazers
                                            [contributors_url] => https://api.github.com/repos/Leward/neo4j-neogen/contributors
                                            [subscribers_url] => https://api.github.com/repos/Leward/neo4j-neogen/subscribers
                                            [subscription_url] => https://api.github.com/repos/Leward/neo4j-neogen/subscription
                                            [commits_url] => https://api.github.com/repos/Leward/neo4j-neogen/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/Leward/neo4j-neogen/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/Leward/neo4j-neogen/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/Leward/neo4j-neogen/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/Leward/neo4j-neogen/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/Leward/neo4j-neogen/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/Leward/neo4j-neogen/merges
                                            [archive_url] => https://api.github.com/repos/Leward/neo4j-neogen/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/Leward/neo4j-neogen/downloads
                                            [issues_url] => https://api.github.com/repos/Leward/neo4j-neogen/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/Leward/neo4j-neogen/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/Leward/neo4j-neogen/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/Leward/neo4j-neogen/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/Leward/neo4j-neogen/labels{/name}
                                            [releases_url] => https://api.github.com/repos/Leward/neo4j-neogen/releases{/id}
                                            [created_at] => 2014-11-08T21:46:20Z
                                            [updated_at] => 2014-11-09T21:48:51Z
                                            [pushed_at] => 2014-11-09T21:48:50Z
                                            [git_url] => git://github.com/Leward/neo4j-neogen.git
                                            [ssh_url] => git@github.com:Leward/neo4j-neogen.git
                                            [clone_url] => https://github.com/Leward/neo4j-neogen.git
                                            [svn_url] => https://github.com/Leward/neo4j-neogen
                                            [homepage] =>
                                            [size] => 626
                                            [stargazers_count] => 0
                                            [watchers_count] => 0
                                            [language] => PHP
                                            [has_issues] =>
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 0
                                            [mirror_url] =>
                                            [open_issues_count] => 0
                                            [forks] => 0
                                            [open_issues] => 0
                                            [watchers] => 0
                                            [default_branch] => master
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => neoxygen:master
                                    [ref] => master
                                    [sha] => 6887f37e903bba8b79c55d202fbf7a9d53736e37
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 24678257
                                            [name] => neo4j-neogen
                                            [full_name] => neoxygen/neo4j-neogen
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-neogen
                                            [description] => Easy generation of dummy Neo4j graphs with PHP
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/releases{/id}
                                            [created_at] => 2014-10-01T12:53:28Z
                                            [updated_at] => 2014-11-02T18:59:12Z
                                            [pushed_at] => 2014-11-09T22:10:26Z
                                            [git_url] => git://github.com/neoxygen/neo4j-neogen.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-neogen.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-neogen.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-neogen
                                            [homepage] =>
                                            [size] => 641
                                            [stargazers_count] => 7
                                            [watchers_count] => 7
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 2
                                            [mirror_url] =>
                                            [open_issues_count] => 2
                                            [forks] => 2
                                            [open_issues] => 2
                                            [watchers] => 7
                                            [default_branch] => master
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/7
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neoxygen/neo4j-neogen/pull/7
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/7
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/7/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/7/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/7/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-neogen/statuses/33ba7d798df8171a88fa71240236801e9c9d60fe
                                        )

                                )

                            [merged] => 1
                            [mergeable] =>
                            [mergeable_state] => unknown
                            [merged_by] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [comments] => 1
                            [review_comments] => 0
                            [commits] => 1
                            [additions] => 12
                            [deletions] => 14
                            [changed_files] => 1
                        )

                )

            [public] => 1
            [created_at] => 2014-11-09T22:10:27Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [262] => Array
        (
            [id] => 2394575944
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/7
                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/7/labels{/name}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/7/comments
                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/7/events
                            [html_url] => https://github.com/neoxygen/neo4j-neogen/pull/7
                            [id] => 48215072
                            [number] => 7
                            [title] => Relationships with no properties defined are no longer ignored
                            [user] => Array
                                (
                                    [login] => Leward
                                    [id] => 1108235
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1108235?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/Leward
                                    [html_url] => https://github.com/Leward
                                    [followers_url] => https://api.github.com/users/Leward/followers
                                    [following_url] => https://api.github.com/users/Leward/following{/other_user}
                                    [gists_url] => https://api.github.com/users/Leward/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/Leward/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/Leward/subscriptions
                                    [organizations_url] => https://api.github.com/users/Leward/orgs
                                    [repos_url] => https://api.github.com/users/Leward/repos
                                    [events_url] => https://api.github.com/users/Leward/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/Leward/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => open
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 1
                            [created_at] => 2014-11-09T21:52:05Z
                            [updated_at] => 2014-11-09T22:10:23Z
                            [closed_at] =>
                            [pull_request] => Array
                                (
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/pulls/7
                                    [html_url] => https://github.com/neoxygen/neo4j-neogen/pull/7
                                    [diff_url] => https://github.com/neoxygen/neo4j-neogen/pull/7.diff
                                    [patch_url] => https://github.com/neoxygen/neo4j-neogen/pull/7.patch
                                )

                            [body] => When using the following YAML configuration, the edges were not added to the graph. The PR fixes this issue:

    connection:
      scheme: http
      host: localhost
      port: 7474

    nodes:
      users:
        label: User
        count: 5
        properties:
          email: email

      fileSpaces:
          label: FileSpace
          count: 5

    relationships:
      fileSpaceRels:
        start: User
        end: FileSpace
        type: FILESPACE
        mode: 1..1
                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/comments/62322225
                            [html_url] => https://github.com/neoxygen/neo4j-neogen/pull/7#issuecomment-62322225
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-neogen/issues/7
                            [id] => 62322225
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2014-11-09T22:10:23Z
                            [updated_at] => 2014-11-09T22:10:23Z
                            [body] => Good catch ! Thank you. Will try to dig some hours this week to bring the cli version at the same level of the UI version.
                        )

                )

            [public] => 1
            [created_at] => 2014-11-09T22:10:23Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [263] => Array
        (
            [id] => 2394497299
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 496273458
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 6887f37e903bba8b79c55d202fbf7a9d53736e37
                    [before] => 00576b6007ef68e6b9ed84f2f721032d585cfcc8
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 6887f37e903bba8b79c55d202fbf7a9d53736e37
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => update readme for deprecated "random" mode
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/6887f37e903bba8b79c55d202fbf7a9d53736e37
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-09T20:21:23Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [264] => Array
        (
            [id] => 2394490754
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24678257
                    [name] => neoxygen/neo4j-neogen
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen
                )

            [payload] => Array
                (
                    [push_id] => 496270271
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 00576b6007ef68e6b9ed84f2f721032d585cfcc8
                    [before] => b2c46fcb2c422b908928d1dbad09a924346756fa
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 00576b6007ef68e6b9ed84f2f721032d585cfcc8
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => update cli version
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neogen/commits/00576b6007ef68e6b9ed84f2f721032d585cfcc8
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-09T20:12:28Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [265] => Array
        (
            [id] => 2394259247
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 21460083
                    [name] => Vinelab/docker-neo4j
                    [url] => https://api.github.com/repos/Vinelab/docker-neo4j
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-11-09T14:10:37Z
            [org] => Array
                (
                    [id] => 4564469
                    [login] => Vinelab
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/Vinelab
                    [avatar_url] => https://avatars.githubusercontent.com/u/4564469?
                )

        )

    [266] => Array
        (
            [id] => 2394224716
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 26188076
                    [name] => neoxygen/neo4j-toolkit
                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                )

            [payload] => Array
                (
                    [push_id] => 496138219
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 8b993c3a9629aaccdc243401ae0c978ae22e38b2
                    [before] => 6539333af589fc70d9151a111cbafdd332b7727e
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 8b993c3a9629aaccdc243401ae0c978ae22e38b2
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => start/stop commands
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/commits/8b993c3a9629aaccdc243401ae0c978ae22e38b2
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-09T13:04:57Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [267] => Array
        (
            [id] => 2393106201
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 26188076
                    [name] => neoxygen/neo4j-toolkit
                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                )

            [payload] => Array
                (
                    [push_id] => 495611469
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 6539333af589fc70d9151a111cbafdd332b7727e
                    [before] => b1b9aa6fc67e1c97ce3bcfae2dffbb6029d16394
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 6539333af589fc70d9151a111cbafdd332b7727e
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added StopCommand and moved checkJmx to Factory
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/commits/6539333af589fc70d9151a111cbafdd332b7727e
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-08T00:34:32Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [268] => Array
        (
            [id] => 2393084456
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 26188076
                    [name] => neoxygen/neo4j-toolkit
                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                )

            [payload] => Array
                (
                    [push_id] => 495602260
                    [size] => 5
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => b1b9aa6fc67e1c97ce3bcfae2dffbb6029d16394
                    [before] => 5a3ead7239067a57626265f8085bb7781141ff3a
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 5fa3c51a00b868f327ade7885cc185ea21f076ff
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added a check to see which instances are running when doing list
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/commits/5fa3c51a00b868f327ade7885cc185ea21f076ff
                                )

                            [1] => Array
                                (
                                    [sha] => d1eda4438044f02b7d2b19c96da110d8e2713f03
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => removed no interaction to debug travis composer install
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/commits/d1eda4438044f02b7d2b19c96da110d8e2713f03
                                )

                            [2] => Array
                                (
                                    [sha] => 7e35a4f2d98d0f7213b57cbecc73915841372f22
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => removed phpunit
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/commits/7e35a4f2d98d0f7213b57cbecc73915841372f22
                                )

                            [3] => Array
                                (
                                    [sha] => 594944400f39b73592befac0fb0c7d9ccb401d06
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => modified tests ns
                                    [distinct] =>
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/commits/594944400f39b73592befac0fb0c7d9ccb401d06
                                )

                            [4] => Array
                                (
                                    [sha] => b1b9aa6fc67e1c97ce3bcfae2dffbb6029d16394
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => Merge pull request #2 from neoxygen/view-running

added a check to see which instances are running when doing list
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/commits/b1b9aa6fc67e1c97ce3bcfae2dffbb6029d16394
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-08T00:15:42Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [269] => Array
        (
            [id] => 2393084423
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 26188076
                    [name] => neoxygen/neo4j-toolkit
                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                )

            [payload] => Array
                (
                    [action] => closed
                    [number] => 2
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/2
                            [id] => 24081881
                            [html_url] => https://github.com/neoxygen/neo4j-toolkit/pull/2
                            [diff_url] => https://github.com/neoxygen/neo4j-toolkit/pull/2.diff
                            [patch_url] => https://github.com/neoxygen/neo4j-toolkit/pull/2.patch
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/2
                            [number] => 2
                            [state] => closed
                            [locked] =>
                            [title] => added a check to see which instances are running when doing list
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] => ![capture d ecran 2014-11-07 a 21 58 24](https://cloud.githubusercontent.com/assets/1222009/4960269/080a6174-66c1-11e4-9ff9-1d5995db1afb.png)

                            [created_at] => 2014-11-07T21:00:02Z
                            [updated_at] => 2014-11-08T00:15:39Z
                            [closed_at] => 2014-11-08T00:15:39Z
                            [merged_at] => 2014-11-08T00:15:39Z
                            [merge_commit_sha] => 9254943a7e7e1b400bf9b03d165dfbd2917d8867
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/2/commits
                            [review_comments_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/2/comments
                            [review_comment_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/2/comments
                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/statuses/594944400f39b73592befac0fb0c7d9ccb401d06
                            [head] => Array
                                (
                                    [label] => neoxygen:view-running
                                    [ref] => view-running
                                    [sha] => 594944400f39b73592befac0fb0c7d9ccb401d06
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 26188076
                                            [name] => neo4j-toolkit
                                            [full_name] => neoxygen/neo4j-toolkit
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-toolkit
                                            [description] => CLI Toolkit for the Neo4j Graph Database
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/releases{/id}
                                            [created_at] => 2014-11-04T20:49:33Z
                                            [updated_at] => 2014-11-07T22:24:59Z
                                            [pushed_at] => 2014-11-08T00:15:39Z
                                            [git_url] => git://github.com/neoxygen/neo4j-toolkit.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-toolkit.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-toolkit.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-toolkit
                                            [homepage] =>
                                            [size] => 0
                                            [stargazers_count] => 3
                                            [watchers_count] => 3
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 1
                                            [mirror_url] =>
                                            [open_issues_count] => 0
                                            [forks] => 1
                                            [open_issues] => 0
                                            [watchers] => 3
                                            [default_branch] => master
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => neoxygen:master
                                    [ref] => master
                                    [sha] => 5a3ead7239067a57626265f8085bb7781141ff3a
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 26188076
                                            [name] => neo4j-toolkit
                                            [full_name] => neoxygen/neo4j-toolkit
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-toolkit
                                            [description] => CLI Toolkit for the Neo4j Graph Database
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/releases{/id}
                                            [created_at] => 2014-11-04T20:49:33Z
                                            [updated_at] => 2014-11-07T22:24:59Z
                                            [pushed_at] => 2014-11-08T00:15:39Z
                                            [git_url] => git://github.com/neoxygen/neo4j-toolkit.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-toolkit.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-toolkit.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-toolkit
                                            [homepage] =>
                                            [size] => 0
                                            [stargazers_count] => 3
                                            [watchers_count] => 3
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 1
                                            [mirror_url] =>
                                            [open_issues_count] => 0
                                            [forks] => 1
                                            [open_issues] => 0
                                            [watchers] => 3
                                            [default_branch] => master
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/2
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neoxygen/neo4j-toolkit/pull/2
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/2
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/2/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/2/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/2/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-toolkit/statuses/594944400f39b73592befac0fb0c7d9ccb401d06
                                        )

                                )

                            [merged] => 1
                            [mergeable] =>
                            [mergeable_state] => unknown
                            [merged_by] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [comments] => 1
                            [review_comments] => 0
                            [commits] => 4
                            [additions] => 965
                            [deletions] => 14
                            [changed_files] => 7
                        )

                )

            [public] => 1
            [created_at] => 2014-11-08T00:15:40Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [270] => Array
        (
            [id] => 2393080922
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 26188076
                    [name] => neoxygen/neo4j-toolkit
                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                )

            [payload] => Array
                (
                    [push_id] => 495600801
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/view-running
                    [head] => 594944400f39b73592befac0fb0c7d9ccb401d06
                    [before] => 7e35a4f2d98d0f7213b57cbecc73915841372f22
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 594944400f39b73592befac0fb0c7d9ccb401d06
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => modified tests ns
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/commits/594944400f39b73592befac0fb0c7d9ccb401d06
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-08T00:12:44Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [271] => Array
        (
            [id] => 2393047707
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24947938
                    [name] => neoxygen/graphgen
                    [url] => https://api.github.com/repos/neoxygen/graphgen
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/graphgen/issues/3
                            [labels_url] => https://api.github.com/repos/neoxygen/graphgen/issues/3/labels{/name}
                            [comments_url] => https://api.github.com/repos/neoxygen/graphgen/issues/3/comments
                            [events_url] => https://api.github.com/repos/neoxygen/graphgen/issues/3/events
                            [html_url] => https://github.com/neoxygen/graphgen/issues/3
                            [id] => 48140087
                            [number] => 3
                            [title] => Distribution of nodes across relationships seems not to be randomized
                            [user] => Array
                                (
                                    [login] => Leward
                                    [id] => 1108235
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1108235?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/Leward
                                    [html_url] => https://github.com/Leward
                                    [followers_url] => https://api.github.com/users/Leward/followers
                                    [following_url] => https://api.github.com/users/Leward/following{/other_user}
                                    [gists_url] => https://api.github.com/users/Leward/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/Leward/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/Leward/subscriptions
                                    [organizations_url] => https://api.github.com/users/Leward/orgs
                                    [repos_url] => https://api.github.com/users/Leward/repos
                                    [events_url] => https://api.github.com/users/Leward/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/Leward/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => open
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 1
                            [created_at] => 2014-11-07T22:45:43Z
                            [updated_at] => 2014-11-07T23:47:07Z
                            [closed_at] =>
                            [body] => We assume the following model:
 * A User has one and only one FileSpace defined.
 * A FileSpace can contains many files.

If you run the following query several times:

    (user:User {email:email} *5)
    (user)-[:filespace *1..1]->(fs:FileSpace *5)
    (fs)-[:contains *1..n]->(file:File {name: randomNumber} *10)

You will notice that one of the FileSpace always contains 5 files and the others only 1. Is this normal behavior, or the maybe did I miss something in the query?
                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/graphgen/issues/comments/62232299
                            [html_url] => https://github.com/neoxygen/graphgen/issues/3#issuecomment-62232299
                            [issue_url] => https://api.github.com/repos/neoxygen/graphgen/issues/3
                            [id] => 62232299
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2014-11-07T23:47:07Z
                            [updated_at] => 2014-11-07T23:47:07Z
                            [body] => Yes currently there are such limitations in graph definition, I suggest you increase the File nodes to 20 so you'll have many files by fs nodes.

In the future you'll be able to do more accurate graph definitons, a new GraphEvaluator will be created for it ;-)
                        )

                )

            [public] => 1
            [created_at] => 2014-11-07T23:47:07Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [272] => Array
        (
            [id] => 2393037187
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24947938
                    [name] => neoxygen/graphgen
                    [url] => https://api.github.com/repos/neoxygen/graphgen
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/graphgen/issues/2
                            [labels_url] => https://api.github.com/repos/neoxygen/graphgen/issues/2/labels{/name}
                            [comments_url] => https://api.github.com/repos/neoxygen/graphgen/issues/2/comments
                            [events_url] => https://api.github.com/repos/neoxygen/graphgen/issues/2/events
                            [html_url] => https://github.com/neoxygen/graphgen/issues/2
                            [id] => 46954910
                            [number] => 2
                            [title] => Call to the community for Node Types
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => open
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 2
                            [created_at] => 2014-10-27T20:25:39Z
                            [updated_at] => 2014-11-07T23:39:09Z
                            [closed_at] =>
                            [body] => In this issue, people can comment and ask for node types they think could be useful for common graph modelling :

* Person
* Company
* Hashtag
* Tweet
* User
                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/graphgen/issues/comments/62231713
                            [html_url] => https://github.com/neoxygen/graphgen/issues/2#issuecomment-62231713
                            [issue_url] => https://api.github.com/repos/neoxygen/graphgen/issues/2
                            [id] => 62231713
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2014-11-07T23:39:09Z
                            [updated_at] => 2014-11-07T23:39:09Z
                            [body] => :+1:

btw a tree structure should be implemented by yourself, I'll show up an example soon ;-)
                        )

                )

            [public] => 1
            [created_at] => 2014-11-07T23:39:10Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [273] => Array
        (
            [id] => 2392789951
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 26188076
                    [name] => neoxygen/neo4j-toolkit
                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                )

            [payload] => Array
                (
                    [push_id] => 495479505
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/view-running
                    [head] => 7e35a4f2d98d0f7213b57cbecc73915841372f22
                    [before] => d1eda4438044f02b7d2b19c96da110d8e2713f03
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 7e35a4f2d98d0f7213b57cbecc73915841372f22
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => removed phpunit
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/commits/7e35a4f2d98d0f7213b57cbecc73915841372f22
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-07T21:21:21Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [274] => Array
        (
            [id] => 2392776641
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 26188076
                    [name] => neoxygen/neo4j-toolkit
                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                )

            [payload] => Array
                (
                    [push_id] => 495474008
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/view-running
                    [head] => d1eda4438044f02b7d2b19c96da110d8e2713f03
                    [before] => 5fa3c51a00b868f327ade7885cc185ea21f076ff
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => d1eda4438044f02b7d2b19c96da110d8e2713f03
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => removed no interaction to debug travis composer install
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/commits/d1eda4438044f02b7d2b19c96da110d8e2713f03
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-07T21:14:43Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [275] => Array
        (
            [id] => 2392748677
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 26188076
                    [name] => neoxygen/neo4j-toolkit
                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/2
                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/2/labels{/name}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/2/comments
                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/2/events
                            [html_url] => https://github.com/neoxygen/neo4j-toolkit/pull/2
                            [id] => 48129976
                            [number] => 2
                            [title] => added a check to see which instances are running when doing list
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => open
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 1
                            [created_at] => 2014-11-07T21:00:02Z
                            [updated_at] => 2014-11-07T21:00:17Z
                            [closed_at] =>
                            [pull_request] => Array
                                (
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/2
                                    [html_url] => https://github.com/neoxygen/neo4j-toolkit/pull/2
                                    [diff_url] => https://github.com/neoxygen/neo4j-toolkit/pull/2.diff
                                    [patch_url] => https://github.com/neoxygen/neo4j-toolkit/pull/2.patch
                                )

                            [body] => ![capture d ecran 2014-11-07 a 21 58 24](https://cloud.githubusercontent.com/assets/1222009/4960269/080a6174-66c1-11e4-9ff9-1d5995db1afb.png)

                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/comments/62210880
                            [html_url] => https://github.com/neoxygen/neo4j-toolkit/pull/2#issuecomment-62210880
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/2
                            [id] => 62210880
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2014-11-07T21:00:17Z
                            [updated_at] => 2014-11-07T21:00:17Z
                            [body] => ping @jeremykendall
                        )

                )

            [public] => 1
            [created_at] => 2014-11-07T21:00:17Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [276] => Array
        (
            [id] => 2392748084
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 26188076
                    [name] => neoxygen/neo4j-toolkit
                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                )

            [payload] => Array
                (
                    [action] => opened
                    [number] => 2
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/2
                            [id] => 24081881
                            [html_url] => https://github.com/neoxygen/neo4j-toolkit/pull/2
                            [diff_url] => https://github.com/neoxygen/neo4j-toolkit/pull/2.diff
                            [patch_url] => https://github.com/neoxygen/neo4j-toolkit/pull/2.patch
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/2
                            [number] => 2
                            [state] => open
                            [locked] =>
                            [title] => added a check to see which instances are running when doing list
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] => ![capture d ecran 2014-11-07 a 21 58 24](https://cloud.githubusercontent.com/assets/1222009/4960269/080a6174-66c1-11e4-9ff9-1d5995db1afb.png)

                            [created_at] => 2014-11-07T21:00:02Z
                            [updated_at] => 2014-11-07T21:00:02Z
                            [closed_at] =>
                            [merged_at] =>
                            [merge_commit_sha] =>
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/2/commits
                            [review_comments_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/2/comments
                            [review_comment_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/2/comments
                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/statuses/5fa3c51a00b868f327ade7885cc185ea21f076ff
                            [head] => Array
                                (
                                    [label] => neoxygen:view-running
                                    [ref] => view-running
                                    [sha] => 5fa3c51a00b868f327ade7885cc185ea21f076ff
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 26188076
                                            [name] => neo4j-toolkit
                                            [full_name] => neoxygen/neo4j-toolkit
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-toolkit
                                            [description] => CLI Toolkit for the Neo4j Graph Database
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/releases{/id}
                                            [created_at] => 2014-11-04T20:49:33Z
                                            [updated_at] => 2014-11-04T22:04:16Z
                                            [pushed_at] => 2014-11-07T20:53:24Z
                                            [git_url] => git://github.com/neoxygen/neo4j-toolkit.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-toolkit.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-toolkit.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-toolkit
                                            [homepage] =>
                                            [size] => 0
                                            [stargazers_count] => 1
                                            [watchers_count] => 1
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 1
                                            [mirror_url] =>
                                            [open_issues_count] => 1
                                            [forks] => 1
                                            [open_issues] => 1
                                            [watchers] => 1
                                            [default_branch] => master
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => neoxygen:master
                                    [ref] => master
                                    [sha] => 5a3ead7239067a57626265f8085bb7781141ff3a
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 26188076
                                            [name] => neo4j-toolkit
                                            [full_name] => neoxygen/neo4j-toolkit
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=3
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-toolkit
                                            [description] => CLI Toolkit for the Neo4j Graph Database
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/releases{/id}
                                            [created_at] => 2014-11-04T20:49:33Z
                                            [updated_at] => 2014-11-04T22:04:16Z
                                            [pushed_at] => 2014-11-07T20:53:24Z
                                            [git_url] => git://github.com/neoxygen/neo4j-toolkit.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-toolkit.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-toolkit.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-toolkit
                                            [homepage] =>
                                            [size] => 0
                                            [stargazers_count] => 1
                                            [watchers_count] => 1
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 1
                                            [mirror_url] =>
                                            [open_issues_count] => 1
                                            [forks] => 1
                                            [open_issues] => 1
                                            [watchers] => 1
                                            [default_branch] => master
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/2
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neoxygen/neo4j-toolkit/pull/2
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/2
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/2/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/2/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/2/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-toolkit/statuses/5fa3c51a00b868f327ade7885cc185ea21f076ff
                                        )

                                )

                            [merged] =>
                            [mergeable] =>
                            [mergeable_state] => unknown
                            [merged_by] =>
                            [comments] => 0
                            [review_comments] => 0
                            [commits] => 1
                            [additions] => 38
                            [deletions] => 7
                            [changed_files] => 2
                        )

                )

            [public] => 1
            [created_at] => 2014-11-07T21:00:03Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [277] => Array
        (
            [id] => 2392735614
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 26188076
                    [name] => neoxygen/neo4j-toolkit
                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                )

            [payload] => Array
                (
                    [ref] => view-running
                    [ref_type] => branch
                    [master_branch] => master
                    [description] => CLI Toolkit for the Neo4j Graph Database
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-11-07T20:53:24Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [278] => Array
        (
            [id] => 2392103532
            [type] => IssuesEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 21350783
                    [name] => graphaware/neo4j-changefeed
                    [url] => https://api.github.com/repos/graphaware/neo4j-changefeed
                )

            [payload] => Array
                (
                    [action] => opened
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/graphaware/neo4j-changefeed/issues/3
                            [labels_url] => https://api.github.com/repos/graphaware/neo4j-changefeed/issues/3/labels{/name}
                            [comments_url] => https://api.github.com/repos/graphaware/neo4j-changefeed/issues/3/comments
                            [events_url] => https://api.github.com/repos/graphaware/neo4j-changefeed/issues/3/events
                            [html_url] => https://github.com/graphaware/neo4j-changefeed/issues/3
                            [id] => 48097402
                            [number] => 3
                            [title] => Performance testing question
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=3
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => open
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 0
                            [created_at] => 2014-11-07T15:54:08Z
                            [updated_at] => 2014-11-07T15:54:08Z
                            [closed_at] =>
                            [body] => Hi all,

I would like to show up a demo app using this extension. Basically looking at the output format received from your endpoint, it looks like I can easily match patterns using the parser developed for Grahgen.

It would serve as post-processing actions, like executing a script, sending an e-mail when a pattern is matched, or other funny use cases.

In a simple UI, you could add rules for matched patterns (and write it like on graphgen) , for e.g. orders on unavailable products, unregistered users visit secure pages, ... and it adds a post-processing detection layer and is non-breaking for the user experience.

I received btw a question from someone, how is this module reacting on for e.g. 3000/4000 req/s ?

Thanks


Chris





                        )

                )

            [public] => 1
            [created_at] => 2014-11-07T15:54:08Z
            [org] => Array
                (
                    [id] => 4264299
                    [login] => graphaware
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/graphaware
                    [avatar_url] => https://avatars.githubusercontent.com/u/4264299?
                )

        )

    [279] => Array
        (
            [id] => 2390444015
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 26290412
                    [name] => kbond/ZenstruckObjectRoutingBundle
                    [url] => https://api.github.com/repos/kbond/ZenstruckObjectRoutingBundle
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-11-06T21:22:06Z
        )

    [280] => Array
        (
            [id] => 2389647273
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 5742095
                    [name] => tabatkins/railroad-diagrams
                    [url] => https://api.github.com/repos/tabatkins/railroad-diagrams
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-11-06T15:44:40Z
        )

    [281] => Array
        (
            [id] => 2389231376
            [type] => ForkEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 2377400
                    [name] => lyrixx/Silex-Kitchen-Edition
                    [url] => https://api.github.com/repos/lyrixx/Silex-Kitchen-Edition
                )

            [payload] => Array
                (
                    [forkee] => Array
                        (
                            [id] => 26268815
                            [name] => Silex-Kitchen-Edition
                            [full_name] => ikwattro/Silex-Kitchen-Edition
                            [owner] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=2
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [private] =>
                            [html_url] => https://github.com/ikwattro/Silex-Kitchen-Edition
                            [description] => This project is a sample or a bootstrap silex application
                            [fork] => 1
                            [url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition
                            [forks_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/forks
                            [keys_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/keys{/key_id}
                            [collaborators_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/collaborators{/collaborator}
                            [teams_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/teams
                            [hooks_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/hooks
                            [issue_events_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/issues/events{/number}
                            [events_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/events
                            [assignees_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/assignees{/user}
                            [branches_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/branches{/branch}
                            [tags_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/tags
                            [blobs_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/git/blobs{/sha}
                            [git_tags_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/git/tags{/sha}
                            [git_refs_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/git/refs{/sha}
                            [trees_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/git/trees{/sha}
                            [statuses_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/statuses/{sha}
                            [languages_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/languages
                            [stargazers_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/stargazers
                            [contributors_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/contributors
                            [subscribers_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/subscribers
                            [subscription_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/subscription
                            [commits_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/commits{/sha}
                            [git_commits_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/git/commits{/sha}
                            [comments_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/comments{/number}
                            [issue_comment_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/issues/comments/{number}
                            [contents_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/contents/{+path}
                            [compare_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/compare/{base}...{head}
                            [merges_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/merges
                            [archive_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/{archive_format}{/ref}
                            [downloads_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/downloads
                            [issues_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/issues{/number}
                            [pulls_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/pulls{/number}
                            [milestones_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/milestones{/number}
                            [notifications_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/notifications{?since,all,participating}
                            [labels_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/labels{/name}
                            [releases_url] => https://api.github.com/repos/ikwattro/Silex-Kitchen-Edition/releases{/id}
                            [created_at] => 2014-11-06T12:22:57Z
                            [updated_at] => 2014-11-04T18:56:19Z
                            [pushed_at] => 2014-04-15T07:42:57Z
                            [git_url] => git://github.com/ikwattro/Silex-Kitchen-Edition.git
                            [ssh_url] => git@github.com:ikwattro/Silex-Kitchen-Edition.git
                            [clone_url] => https://github.com/ikwattro/Silex-Kitchen-Edition.git
                            [svn_url] => https://github.com/ikwattro/Silex-Kitchen-Edition
                            [homepage] => http://lyrixx.github.com/Silex-Kitchen-Edition/
                            [size] => 1725
                            [stargazers_count] => 0
                            [watchers_count] => 0
                            [language] =>
                            [has_issues] =>
                            [has_downloads] => 1
                            [has_wiki] =>
                            [has_pages] =>
                            [forks_count] => 0
                            [mirror_url] =>
                            [open_issues_count] => 0
                            [forks] => 0
                            [open_issues] => 0
                            [watchers] => 0
                            [default_branch] => master
                            [public] => 1
                        )

                )

            [public] => 1
            [created_at] => 2014-11-06T12:22:57Z
        )

    [282] => Array
        (
            [id] => 2387934410
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24230528
                    [name] => thephpleague/period
                    [url] => https://api.github.com/repos/thephpleague/period
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-11-05T21:27:39Z
            [org] => Array
                (
                    [id] => 527621
                    [login] => thephpleague
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/thephpleague
                    [avatar_url] => https://avatars.githubusercontent.com/u/527621?
                )

        )

    [283] => Array
        (
            [id] => 2387930006
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 493409575
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 4b2d71f64747d86f503c4b6d704d23df8253b04d
                    [before] => 5ad4cbb8eb467288e5c9b758ca82ded85141bc35
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 4b2d71f64747d86f503c4b6d704d23df8253b04d
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => ha failure file must be checked in the builder
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/4b2d71f64747d86f503c4b6d704d23df8253b04d
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-05T21:25:49Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [284] => Array
        (
            [id] => 2387748219
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 493333162
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => 5ad4cbb8eb467288e5c9b758ca82ded85141bc35
                    [before] => a0891362f55cc46ea4cf7e3caaf7afe2eb9053aa
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 5ad4cbb8eb467288e5c9b758ca82ded85141bc35
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => use a tmp file for new master reelection on new runtimes
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/5ad4cbb8eb467288e5c9b758ca82ded85141bc35
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-05T20:03:23Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [285] => Array
        (
            [id] => 2387436771
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 493204815
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => a0891362f55cc46ea4cf7e3caaf7afe2eb9053aa
                    [before] => a367cb798540b08e4ba2586e27e14941fb74fe5f
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => a0891362f55cc46ea4cf7e3caaf7afe2eb9053aa
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => HA Enterprise Manager
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/a0891362f55cc46ea4cf7e3caaf7afe2eb9053aa
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-05T17:47:55Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [286] => Array
        (
            [id] => 2386546204
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 26188076
                    [name] => neoxygen/neo4j-toolkit
                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                )

            [payload] => Array
                (
                    [push_id] => 492819191
                    [size] => 4
                    [distinct_size] => 4
                    [ref] => refs/heads/master
                    [head] => 5a3ead7239067a57626265f8085bb7781141ff3a
                    [before] => fe3024b7da40dac304110742539fc968373ef395
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => 51de68d48e23354087a5f5f2476c4585d07acfb9
                                    [author] => Array
                                        (
                                            [email] => jeremy@jeremykendall.net
                                            [name] => jeremykendall
                                        )

                                    [message] => Adds a Composer script to create config dir after install
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/commits/51de68d48e23354087a5f5f2476c4585d07acfb9
                                )

                            [1] => Array
                                (
                                    [sha] => cd9793fd0570ae6b4059f26dee3206ed8f2d61f6
                                    [author] => Array
                                        (
                                            [email] => jeremy@jeremykendall.net
                                            [name] => jeremykendall
                                        )

                                    [message] => Adds test, .travis.yml
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/commits/cd9793fd0570ae6b4059f26dee3206ed8f2d61f6
                                )

                            [2] => Array
                                (
                                    [sha] => 06ad383429aae8ae9a2bc021128c88fe2f811c2d
                                    [author] => Array
                                        (
                                            [email] => jeremy@jeremykendall.net
                                            [name] => jeremykendall
                                        )

                                    [message] => Adds bootstrap to turn error_reporting up to 11.
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/commits/06ad383429aae8ae9a2bc021128c88fe2f811c2d
                                )

                            [3] => Array
                                (
                                    [sha] => 5a3ead7239067a57626265f8085bb7781141ff3a
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => Merge pull request #1 from jeremykendall/feature/composer-script-config-dir

Adds a Composer script to create config dir after install
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/commits/5a3ead7239067a57626265f8085bb7781141ff3a
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-05T10:51:12Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [287] => Array
        (
            [id] => 2386546183
            [type] => PullRequestEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 26188076
                    [name] => neoxygen/neo4j-toolkit
                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                )

            [payload] => Array
                (
                    [action] => closed
                    [number] => 1
                    [pull_request] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/1
                            [id] => 23881523
                            [html_url] => https://github.com/neoxygen/neo4j-toolkit/pull/1
                            [diff_url] => https://github.com/neoxygen/neo4j-toolkit/pull/1.diff
                            [patch_url] => https://github.com/neoxygen/neo4j-toolkit/pull/1.patch
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/1
                            [number] => 1
                            [state] => closed
                            [locked] =>
                            [title] => Adds a Composer script to create config dir after install
                            [user] => Array
                                (
                                    [login] => jeremykendall
                                    [id] => 288613
                                    [avatar_url] => https://avatars.githubusercontent.com/u/288613?v=2
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/jeremykendall
                                    [html_url] => https://github.com/jeremykendall
                                    [followers_url] => https://api.github.com/users/jeremykendall/followers
                                    [following_url] => https://api.github.com/users/jeremykendall/following{/other_user}
                                    [gists_url] => https://api.github.com/users/jeremykendall/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/jeremykendall/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/jeremykendall/subscriptions
                                    [organizations_url] => https://api.github.com/users/jeremykendall/orgs
                                    [repos_url] => https://api.github.com/users/jeremykendall/repos
                                    [events_url] => https://api.github.com/users/jeremykendall/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/jeremykendall/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [body] => I got the following PHP Warning when trying to run `./bin/neo db:list` (because the `~/.neotoolkit` dir does not exist):

```
jeremykendall at orgrimmar in ~/dev/neo4j-toolkit on master
$ ./bin/neo db:list
-----------------------
NeoToolkit Version 0.1.0-dev
This is a development version, do not use in production environment
-----------------------
PHP Warning:  file_put_contents(/Users/jeremykendall/.neotoolkit/config): failed to open stream: No such file or directory in /Users/jeremykendall/dev/neo4j-toolkit/src/Factory.php on line 60
PHP Stack trace:
PHP   1. {main}() /Users/jeremykendall/dev/neo4j-toolkit/bin/neo:0
PHP   2. Symfony\Component\Console\Application->run() /Users/jeremykendall/dev/neo4j-toolkit/bin/neo:22
PHP   3. Symfony\Component\Console\Application->doRun() /Users/jeremykendall/dev/neo4j-toolkit/vendor/symfony/console/Symfony/Component/Console/Application.php:126
PHP   4. Symfony\Component\Console\Application->doRunCommand() /Users/jeremykendall/dev/neo4j-toolkit/vendor/symfony/console/Symfony/Component/Console/Application.php:195
PHP   5. Symfony\Component\Console\Command\Command->run() /Users/jeremykendall/dev/neo4j-toolkit/vendor/symfony/console/Symfony/Component/Console/Application.php:874
PHP   6. Neoxygen\NeoToolkit\Terminal\ListCommand->execute() /Users/jeremykendall/dev/neo4j-toolkit/vendor/symfony/console/Symfony/Component/Console/Command/Command.php:252
PHP   7. Neoxygen\NeoToolkit\Factory::getConfig() /Users/jeremykendall/dev/neo4j-toolkit/src/Terminal/ListCommand.php:44
PHP   8. Neoxygen\NeoToolkit\Factory::createConfigFile() /Users/jeremykendall/dev/neo4j-toolkit/src/Factory.php:47
PHP   9. Neoxygen\NeoToolkit\Factory::setConfig() /Users/jeremykendall/dev/neo4j-toolkit/src/Factory.php:70
PHP  10. file_put_contents() /Users/jeremykendall/dev/neo4j-toolkit/src/Factory.php:60

Warning: file_put_contents(/Users/jeremykendall/.neotoolkit/config): failed to open stream: No such file or directory in /Users/jeremykendall/dev/neo4j-toolkit/src/Factory.php on line 60

Call Stack:
    0.0002     239968   1. {main}() /Users/jeremykendall/dev/neo4j-toolkit/bin/neo:0
    0.0094    1695064   2. Symfony\Component\Console\Application->run() /Users/jeremykendall/dev/neo4j-toolkit/bin/neo:22
    0.0117    2031216   3. Symfony\Component\Console\Application->doRun() /Users/jeremykendall/dev/neo4j-toolkit/vendor/symfony/console/Symfony/Component/Console/Application.php:126
    0.0118    2032136   4. Symfony\Component\Console\Application->doRunCommand() /Users/jeremykendall/dev/neo4j-toolkit/vendor/symfony/console/Symfony/Component/Console/Application.php:195
    0.0118    2032608   5. Symfony\Component\Console\Command\Command->run() /Users/jeremykendall/dev/neo4j-toolkit/vendor/symfony/console/Symfony/Component/Console/Application.php:874
    0.0120    2036272   6. Neoxygen\NeoToolkit\Terminal\ListCommand->execute() /Users/jeremykendall/dev/neo4j-toolkit/vendor/symfony/console/Symfony/Component/Console/Command/Command.php:252
    0.0125    2053888   7. Neoxygen\NeoToolkit\Factory::getConfig() /Users/jeremykendall/dev/neo4j-toolkit/src/Terminal/ListCommand.php:44
    0.0125    2054112   8. Neoxygen\NeoToolkit\Factory::createConfigFile() /Users/jeremykendall/dev/neo4j-toolkit/src/Factory.php:47
    0.0125    2054608   9. Neoxygen\NeoToolkit\Factory::setConfig() /Users/jeremykendall/dev/neo4j-toolkit/src/Factory.php:70
    0.0136    2239528  10. file_put_contents() /Users/jeremykendall/dev/neo4j-toolkit/src/Factory.php:60

No Neo4j instances registered
```

This PR adds a [Composer script](https://getcomposer.org/doc/articles/scripts.md) that runs during the `post-install-cmd` event to create the missing config dir so that `file_put_contents` won't blow up.
                            [created_at] => 2014-11-05T03:04:19Z
                            [updated_at] => 2014-11-05T10:51:11Z
                            [closed_at] => 2014-11-05T10:51:11Z
                            [merged_at] => 2014-11-05T10:51:11Z
                            [merge_commit_sha] => edbcec8f24908c031b656c600a14f14dfab42edc
                            [assignee] =>
                            [milestone] =>
                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/1/commits
                            [review_comments_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/1/comments
                            [review_comment_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/comments/{number}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/1/comments
                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/statuses/06ad383429aae8ae9a2bc021128c88fe2f811c2d
                            [head] => Array
                                (
                                    [label] => jeremykendall:feature/composer-script-config-dir
                                    [ref] => feature/composer-script-config-dir
                                    [sha] => 06ad383429aae8ae9a2bc021128c88fe2f811c2d
                                    [user] => Array
                                        (
                                            [login] => jeremykendall
                                            [id] => 288613
                                            [avatar_url] => https://avatars.githubusercontent.com/u/288613?v=2
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/jeremykendall
                                            [html_url] => https://github.com/jeremykendall
                                            [followers_url] => https://api.github.com/users/jeremykendall/followers
                                            [following_url] => https://api.github.com/users/jeremykendall/following{/other_user}
                                            [gists_url] => https://api.github.com/users/jeremykendall/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/jeremykendall/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/jeremykendall/subscriptions
                                            [organizations_url] => https://api.github.com/users/jeremykendall/orgs
                                            [repos_url] => https://api.github.com/users/jeremykendall/repos
                                            [events_url] => https://api.github.com/users/jeremykendall/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/jeremykendall/received_events
                                            [type] => User
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 26200216
                                            [name] => neo4j-toolkit
                                            [full_name] => jeremykendall/neo4j-toolkit
                                            [owner] => Array
                                                (
                                                    [login] => jeremykendall
                                                    [id] => 288613
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/288613?v=2
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/jeremykendall
                                                    [html_url] => https://github.com/jeremykendall
                                                    [followers_url] => https://api.github.com/users/jeremykendall/followers
                                                    [following_url] => https://api.github.com/users/jeremykendall/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/jeremykendall/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/jeremykendall/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/jeremykendall/subscriptions
                                                    [organizations_url] => https://api.github.com/users/jeremykendall/orgs
                                                    [repos_url] => https://api.github.com/users/jeremykendall/repos
                                                    [events_url] => https://api.github.com/users/jeremykendall/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/jeremykendall/received_events
                                                    [type] => User
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/jeremykendall/neo4j-toolkit
                                            [description] => CLI Toolkit for the Neo4j Graph Database
                                            [fork] => 1
                                            [url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit
                                            [forks_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/forks
                                            [keys_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/teams
                                            [hooks_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/hooks
                                            [issue_events_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/events
                                            [assignees_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/tags
                                            [blobs_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/languages
                                            [stargazers_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/stargazers
                                            [contributors_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/contributors
                                            [subscribers_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/subscribers
                                            [subscription_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/subscription
                                            [commits_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/merges
                                            [archive_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/downloads
                                            [issues_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/labels{/name}
                                            [releases_url] => https://api.github.com/repos/jeremykendall/neo4j-toolkit/releases{/id}
                                            [created_at] => 2014-11-05T02:59:06Z
                                            [updated_at] => 2014-11-04T22:04:16Z
                                            [pushed_at] => 2014-11-05T05:51:58Z
                                            [git_url] => git://github.com/jeremykendall/neo4j-toolkit.git
                                            [ssh_url] => git@github.com:jeremykendall/neo4j-toolkit.git
                                            [clone_url] => https://github.com/jeremykendall/neo4j-toolkit.git
                                            [svn_url] => https://github.com/jeremykendall/neo4j-toolkit
                                            [homepage] =>
                                            [size] => 0
                                            [stargazers_count] => 0
                                            [watchers_count] => 0
                                            [language] =>
                                            [has_issues] =>
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 0
                                            [mirror_url] =>
                                            [open_issues_count] => 0
                                            [forks] => 0
                                            [open_issues] => 0
                                            [watchers] => 0
                                            [default_branch] => master
                                        )

                                )

                            [base] => Array
                                (
                                    [label] => neoxygen:master
                                    [ref] => master
                                    [sha] => fe3024b7da40dac304110742539fc968373ef395
                                    [user] => Array
                                        (
                                            [login] => neoxygen
                                            [id] => 2023052
                                            [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=2
                                            [gravatar_id] =>
                                            [url] => https://api.github.com/users/neoxygen
                                            [html_url] => https://github.com/neoxygen
                                            [followers_url] => https://api.github.com/users/neoxygen/followers
                                            [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                            [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                            [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                            [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                            [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                            [repos_url] => https://api.github.com/users/neoxygen/repos
                                            [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                            [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                            [type] => Organization
                                            [site_admin] =>
                                        )

                                    [repo] => Array
                                        (
                                            [id] => 26188076
                                            [name] => neo4j-toolkit
                                            [full_name] => neoxygen/neo4j-toolkit
                                            [owner] => Array
                                                (
                                                    [login] => neoxygen
                                                    [id] => 2023052
                                                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?v=2
                                                    [gravatar_id] =>
                                                    [url] => https://api.github.com/users/neoxygen
                                                    [html_url] => https://github.com/neoxygen
                                                    [followers_url] => https://api.github.com/users/neoxygen/followers
                                                    [following_url] => https://api.github.com/users/neoxygen/following{/other_user}
                                                    [gists_url] => https://api.github.com/users/neoxygen/gists{/gist_id}
                                                    [starred_url] => https://api.github.com/users/neoxygen/starred{/owner}{/repo}
                                                    [subscriptions_url] => https://api.github.com/users/neoxygen/subscriptions
                                                    [organizations_url] => https://api.github.com/users/neoxygen/orgs
                                                    [repos_url] => https://api.github.com/users/neoxygen/repos
                                                    [events_url] => https://api.github.com/users/neoxygen/events{/privacy}
                                                    [received_events_url] => https://api.github.com/users/neoxygen/received_events
                                                    [type] => Organization
                                                    [site_admin] =>
                                                )

                                            [private] =>
                                            [html_url] => https://github.com/neoxygen/neo4j-toolkit
                                            [description] => CLI Toolkit for the Neo4j Graph Database
                                            [fork] =>
                                            [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                                            [forks_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/forks
                                            [keys_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/keys{/key_id}
                                            [collaborators_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/collaborators{/collaborator}
                                            [teams_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/teams
                                            [hooks_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/hooks
                                            [issue_events_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/events{/number}
                                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/events
                                            [assignees_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/assignees{/user}
                                            [branches_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/branches{/branch}
                                            [tags_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/tags
                                            [blobs_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/git/blobs{/sha}
                                            [git_tags_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/git/tags{/sha}
                                            [git_refs_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/git/refs{/sha}
                                            [trees_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/git/trees{/sha}
                                            [statuses_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/statuses/{sha}
                                            [languages_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/languages
                                            [stargazers_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/stargazers
                                            [contributors_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/contributors
                                            [subscribers_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/subscribers
                                            [subscription_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/subscription
                                            [commits_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/commits{/sha}
                                            [git_commits_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/git/commits{/sha}
                                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/comments{/number}
                                            [issue_comment_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/comments/{number}
                                            [contents_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/contents/{+path}
                                            [compare_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/compare/{base}...{head}
                                            [merges_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/merges
                                            [archive_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/{archive_format}{/ref}
                                            [downloads_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/downloads
                                            [issues_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues{/number}
                                            [pulls_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls{/number}
                                            [milestones_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/milestones{/number}
                                            [notifications_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/notifications{?since,all,participating}
                                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/labels{/name}
                                            [releases_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/releases{/id}
                                            [created_at] => 2014-11-04T20:49:33Z
                                            [updated_at] => 2014-11-04T22:04:16Z
                                            [pushed_at] => 2014-11-05T10:51:11Z
                                            [git_url] => git://github.com/neoxygen/neo4j-toolkit.git
                                            [ssh_url] => git@github.com:neoxygen/neo4j-toolkit.git
                                            [clone_url] => https://github.com/neoxygen/neo4j-toolkit.git
                                            [svn_url] => https://github.com/neoxygen/neo4j-toolkit
                                            [homepage] =>
                                            [size] => 0
                                            [stargazers_count] => 1
                                            [watchers_count] => 1
                                            [language] => PHP
                                            [has_issues] => 1
                                            [has_downloads] => 1
                                            [has_wiki] => 1
                                            [has_pages] =>
                                            [forks_count] => 1
                                            [mirror_url] =>
                                            [open_issues_count] => 0
                                            [forks] => 1
                                            [open_issues] => 0
                                            [watchers] => 1
                                            [default_branch] => master
                                        )

                                )

                            [_links] => Array
                                (
                                    [self] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/1
                                        )

                                    [html] => Array
                                        (
                                            [href] => https://github.com/neoxygen/neo4j-toolkit/pull/1
                                        )

                                    [issue] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/1
                                        )

                                    [comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/1/comments
                                        )

                                    [review_comments] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/1/comments
                                        )

                                    [review_comment] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/comments/{number}
                                        )

                                    [commits] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/1/commits
                                        )

                                    [statuses] => Array
                                        (
                                            [href] => https://api.github.com/repos/neoxygen/neo4j-toolkit/statuses/06ad383429aae8ae9a2bc021128c88fe2f811c2d
                                        )

                                )

                            [merged] => 1
                            [mergeable] =>
                            [mergeable_state] => unknown
                            [merged_by] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=2
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [comments] => 1
                            [review_comments] => 0
                            [commits] => 3
                            [additions] => 159
                            [deletions] => 15
                            [changed_files] => 6
                        )

                )

            [public] => 1
            [created_at] => 2014-11-05T10:51:12Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [288] => Array
        (
            [id] => 2386545896
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 26188076
                    [name] => neoxygen/neo4j-toolkit
                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/1
                            [labels_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/1/labels{/name}
                            [comments_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/1/comments
                            [events_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/1/events
                            [html_url] => https://github.com/neoxygen/neo4j-toolkit/pull/1
                            [id] => 47794615
                            [number] => 1
                            [title] => Adds a Composer script to create config dir after install
                            [user] => Array
                                (
                                    [login] => jeremykendall
                                    [id] => 288613
                                    [avatar_url] => https://avatars.githubusercontent.com/u/288613?v=2
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/jeremykendall
                                    [html_url] => https://github.com/jeremykendall
                                    [followers_url] => https://api.github.com/users/jeremykendall/followers
                                    [following_url] => https://api.github.com/users/jeremykendall/following{/other_user}
                                    [gists_url] => https://api.github.com/users/jeremykendall/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/jeremykendall/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/jeremykendall/subscriptions
                                    [organizations_url] => https://api.github.com/users/jeremykendall/orgs
                                    [repos_url] => https://api.github.com/users/jeremykendall/repos
                                    [events_url] => https://api.github.com/users/jeremykendall/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/jeremykendall/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => open
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 1
                            [created_at] => 2014-11-05T03:04:19Z
                            [updated_at] => 2014-11-05T10:51:01Z
                            [closed_at] =>
                            [pull_request] => Array
                                (
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/pulls/1
                                    [html_url] => https://github.com/neoxygen/neo4j-toolkit/pull/1
                                    [diff_url] => https://github.com/neoxygen/neo4j-toolkit/pull/1.diff
                                    [patch_url] => https://github.com/neoxygen/neo4j-toolkit/pull/1.patch
                                )

                            [body] => I got the following PHP Warning when trying to run `./bin/neo db:list` (because the `~/.neotoolkit` dir does not exist):

```
jeremykendall at orgrimmar in ~/dev/neo4j-toolkit on master
$ ./bin/neo db:list
-----------------------
NeoToolkit Version 0.1.0-dev
This is a development version, do not use in production environment
-----------------------
PHP Warning:  file_put_contents(/Users/jeremykendall/.neotoolkit/config): failed to open stream: No such file or directory in /Users/jeremykendall/dev/neo4j-toolkit/src/Factory.php on line 60
PHP Stack trace:
PHP   1. {main}() /Users/jeremykendall/dev/neo4j-toolkit/bin/neo:0
PHP   2. Symfony\Component\Console\Application->run() /Users/jeremykendall/dev/neo4j-toolkit/bin/neo:22
PHP   3. Symfony\Component\Console\Application->doRun() /Users/jeremykendall/dev/neo4j-toolkit/vendor/symfony/console/Symfony/Component/Console/Application.php:126
PHP   4. Symfony\Component\Console\Application->doRunCommand() /Users/jeremykendall/dev/neo4j-toolkit/vendor/symfony/console/Symfony/Component/Console/Application.php:195
PHP   5. Symfony\Component\Console\Command\Command->run() /Users/jeremykendall/dev/neo4j-toolkit/vendor/symfony/console/Symfony/Component/Console/Application.php:874
PHP   6. Neoxygen\NeoToolkit\Terminal\ListCommand->execute() /Users/jeremykendall/dev/neo4j-toolkit/vendor/symfony/console/Symfony/Component/Console/Command/Command.php:252
PHP   7. Neoxygen\NeoToolkit\Factory::getConfig() /Users/jeremykendall/dev/neo4j-toolkit/src/Terminal/ListCommand.php:44
PHP   8. Neoxygen\NeoToolkit\Factory::createConfigFile() /Users/jeremykendall/dev/neo4j-toolkit/src/Factory.php:47
PHP   9. Neoxygen\NeoToolkit\Factory::setConfig() /Users/jeremykendall/dev/neo4j-toolkit/src/Factory.php:70
PHP  10. file_put_contents() /Users/jeremykendall/dev/neo4j-toolkit/src/Factory.php:60

Warning: file_put_contents(/Users/jeremykendall/.neotoolkit/config): failed to open stream: No such file or directory in /Users/jeremykendall/dev/neo4j-toolkit/src/Factory.php on line 60

Call Stack:
    0.0002     239968   1. {main}() /Users/jeremykendall/dev/neo4j-toolkit/bin/neo:0
    0.0094    1695064   2. Symfony\Component\Console\Application->run() /Users/jeremykendall/dev/neo4j-toolkit/bin/neo:22
    0.0117    2031216   3. Symfony\Component\Console\Application->doRun() /Users/jeremykendall/dev/neo4j-toolkit/vendor/symfony/console/Symfony/Component/Console/Application.php:126
    0.0118    2032136   4. Symfony\Component\Console\Application->doRunCommand() /Users/jeremykendall/dev/neo4j-toolkit/vendor/symfony/console/Symfony/Component/Console/Application.php:195
    0.0118    2032608   5. Symfony\Component\Console\Command\Command->run() /Users/jeremykendall/dev/neo4j-toolkit/vendor/symfony/console/Symfony/Component/Console/Application.php:874
    0.0120    2036272   6. Neoxygen\NeoToolkit\Terminal\ListCommand->execute() /Users/jeremykendall/dev/neo4j-toolkit/vendor/symfony/console/Symfony/Component/Console/Command/Command.php:252
    0.0125    2053888   7. Neoxygen\NeoToolkit\Factory::getConfig() /Users/jeremykendall/dev/neo4j-toolkit/src/Terminal/ListCommand.php:44
    0.0125    2054112   8. Neoxygen\NeoToolkit\Factory::createConfigFile() /Users/jeremykendall/dev/neo4j-toolkit/src/Factory.php:47
    0.0125    2054608   9. Neoxygen\NeoToolkit\Factory::setConfig() /Users/jeremykendall/dev/neo4j-toolkit/src/Factory.php:70
    0.0136    2239528  10. file_put_contents() /Users/jeremykendall/dev/neo4j-toolkit/src/Factory.php:60

No Neo4j instances registered
```

This PR adds a [Composer script](https://getcomposer.org/doc/articles/scripts.md) that runs during the `post-install-cmd` event to create the missing config dir so that `file_put_contents` won't blow up.
                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/comments/61789937
                            [html_url] => https://github.com/neoxygen/neo4j-toolkit/pull/1#issuecomment-61789937
                            [issue_url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/issues/1
                            [id] => 61789937
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=2
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2014-11-05T10:51:01Z
                            [updated_at] => 2014-11-05T10:51:01Z
                            [body] => Thank you @jeremykendall , nice Tests bootstrap.

For the directory fix, I take it as a temporary fix, because ideally the library will be distributed as a .phar archive file.


                        )

                )

            [public] => 1
            [created_at] => 2014-11-05T10:51:02Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [289] => Array
        (
            [id] => 2385510250
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 26188076
                    [name] => neoxygen/neo4j-toolkit
                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                )

            [payload] => Array
                (
                    [push_id] => 492381523
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => fe3024b7da40dac304110742539fc968373ef395
                    [before] => a0b04e0b07f3d93ca8339421cf6d838686ac69e8
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => fe3024b7da40dac304110742539fc968373ef395
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added gif
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/commits/fe3024b7da40dac304110742539fc968373ef395
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-04T22:15:55Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [290] => Array
        (
            [id] => 2385486973
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 26188076
                    [name] => neoxygen/neo4j-toolkit
                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                )

            [payload] => Array
                (
                    [push_id] => 492372028
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => a0b04e0b07f3d93ca8339421cf6d838686ac69e8
                    [before] => 4766539608c0d41394fbc0ce7a12c0814b6563c3
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => a0b04e0b07f3d93ca8339421cf6d838686ac69e8
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => fixed cached folder not copy after download
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit/commits/a0b04e0b07f3d93ca8339421cf6d838686ac69e8
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-04T22:05:41Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [291] => Array
        (
            [id] => 2385472503
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 26188076
                    [name] => neoxygen/neo4j-toolkit
                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                )

            [payload] => Array
                (
                    [ref] => master
                    [ref_type] => branch
                    [master_branch] => master
                    [description] => CLI Toolkit for the Neo4j Graph Database
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-11-04T21:59:53Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [292] => Array
        (
            [id] => 2385308969
            [type] => CreateEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 26188076
                    [name] => neoxygen/neo4j-toolkit
                    [url] => https://api.github.com/repos/neoxygen/neo4j-toolkit
                )

            [payload] => Array
                (
                    [ref] =>
                    [ref_type] => repository
                    [master_branch] => master
                    [description] => CLI Toolkit for the Neo4j Graph Database
                    [pusher_type] => user
                )

            [public] => 1
            [created_at] => 2014-11-04T20:49:36Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [293] => Array
        (
            [id] => 2383671214
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 25180043
                    [name] => GraphStory/graph-kit-php
                    [url] => https://api.github.com/repos/GraphStory/graph-kit-php
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/GraphStory/graph-kit-php/issues/15
                            [labels_url] => https://api.github.com/repos/GraphStory/graph-kit-php/issues/15/labels{/name}
                            [comments_url] => https://api.github.com/repos/GraphStory/graph-kit-php/issues/15/comments
                            [events_url] => https://api.github.com/repos/GraphStory/graph-kit-php/issues/15/events
                            [html_url] => https://github.com/GraphStory/graph-kit-php/pull/15
                            [id] => 47327916
                            [number] => 15
                            [title] => WIP: Test suite setup improvement
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=2
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => open
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 48
                            [created_at] => 2014-10-30T21:07:31Z
                            [updated_at] => 2014-11-04T07:31:05Z
                            [closed_at] =>
                            [pull_request] => Array
                                (
                                    [url] => https://api.github.com/repos/GraphStory/graph-kit-php/pulls/15
                                    [html_url] => https://github.com/GraphStory/graph-kit-php/pull/15
                                    [diff_url] => https://github.com/GraphStory/graph-kit-php/pull/15.diff
                                    [patch_url] => https://github.com/GraphStory/graph-kit-php/pull/15.patch
                                )

                            [body] => Refactored test suite setup
* Adjusted namespace definition in composer.json
* Corrected namespaces in Neo4jClientMock, as \ before fqdcn are not required when using namespaces correctly
* Added a .travis.yml file for using Travis and having a real db to test on
* Added a Import file to import data when the Slim bootstrap is done

I just need to look a bit deeper of how to bootstrap the app correctly for integration tests.

Running `phpunit` is ok.

Would be cool if merged to add `Travis` service webhook
                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/GraphStory/graph-kit-php/issues/comments/61602939
                            [html_url] => https://github.com/GraphStory/graph-kit-php/pull/15#issuecomment-61602939
                            [issue_url] => https://api.github.com/repos/GraphStory/graph-kit-php/issues/15
                            [id] => 61602939
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=2
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2014-11-04T07:31:05Z
                            [updated_at] => 2014-11-04T07:31:05Z
                            [body] => Ok for me ;-)
                        )

                )

            [public] => 1
            [created_at] => 2014-11-04T07:31:06Z
            [org] => Array
                (
                    [id] => 7378594
                    [login] => GraphStory
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/GraphStory
                    [avatar_url] => https://avatars.githubusercontent.com/u/7378594?
                )

        )

    [294] => Array
        (
            [id] => 2383670164
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 16362312
                    [name] => brian-gates/cypher-stream
                    [url] => https://api.github.com/repos/brian-gates/cypher-stream
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-11-04T07:30:11Z
        )

    [295] => Array
        (
            [id] => 2382935708
            [type] => WatchEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 25986852
                    [name] => webwurst/docker-apache-php
                    [url] => https://api.github.com/repos/webwurst/docker-apache-php
                )

            [payload] => Array
                (
                    [action] => started
                )

            [public] => 1
            [created_at] => 2014-11-03T22:06:42Z
        )

    [296] => Array
        (
            [id] => 2382910384
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 491307742
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => a367cb798540b08e4ba2586e27e14941fb74fe5f
                    [before] => aee12cfe25590b3eacef59416d50e43b95db6868
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => a367cb798540b08e4ba2586e27e14941fb74fe5f
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => moved ha community under ha in doc
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/a367cb798540b08e4ba2586e27e14941fb74fe5f
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-03T21:55:59Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [297] => Array
        (
            [id] => 2382888301
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 25180043
                    [name] => GraphStory/graph-kit-php
                    [url] => https://api.github.com/repos/GraphStory/graph-kit-php
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/GraphStory/graph-kit-php/issues/20
                            [labels_url] => https://api.github.com/repos/GraphStory/graph-kit-php/issues/20/labels{/name}
                            [comments_url] => https://api.github.com/repos/GraphStory/graph-kit-php/issues/20/comments
                            [events_url] => https://api.github.com/repos/GraphStory/graph-kit-php/issues/20/events
                            [html_url] => https://github.com/GraphStory/graph-kit-php/pull/20
                            [id] => 47450811
                            [number] => 20
                            [title] => refactored app bootstrap
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=2
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => open
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 11
                            [created_at] => 2014-10-31T22:32:13Z
                            [updated_at] => 2014-11-03T21:46:57Z
                            [closed_at] =>
                            [pull_request] => Array
                                (
                                    [url] => https://api.github.com/repos/GraphStory/graph-kit-php/pulls/20
                                    [html_url] => https://github.com/GraphStory/graph-kit-php/pull/20
                                    [diff_url] => https://github.com/GraphStory/graph-kit-php/pull/20.diff
                                    [patch_url] => https://github.com/GraphStory/graph-kit-php/pull/20.patch
                                )

                            [body] => What do you think about this kind of index.php refactoring ?

Also I added an index_dev.php that can only be run in local env.

@guillermoandrae pls check boostrap phpunit to see if you're ok
                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/GraphStory/graph-kit-php/issues/comments/61554762
                            [html_url] => https://github.com/GraphStory/graph-kit-php/pull/20#issuecomment-61554762
                            [issue_url] => https://api.github.com/repos/GraphStory/graph-kit-php/issues/20
                            [id] => 61554762
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=2
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2014-11-03T21:46:57Z
                            [updated_at] => 2014-11-03T21:46:57Z
                            [body] => ;-)
                        )

                )

            [public] => 1
            [created_at] => 2014-11-03T21:46:57Z
            [org] => Array
                (
                    [id] => 7378594
                    [login] => GraphStory
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/GraphStory
                    [avatar_url] => https://avatars.githubusercontent.com/u/7378594?
                )

        )

    [298] => Array
        (
            [id] => 2382887723
            [type] => PushEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 24004568
                    [name] => neoxygen/neo4j-neoclient
                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient
                )

            [payload] => Array
                (
                    [push_id] => 491298817
                    [size] => 1
                    [distinct_size] => 1
                    [ref] => refs/heads/master
                    [head] => aee12cfe25590b3eacef59416d50e43b95db6868
                    [before] => a57233b3591eebba92dcdbbb75d6246624ee402c
                    [commits] => Array
                        (
                            [0] => Array
                                (
                                    [sha] => aee12cfe25590b3eacef59416d50e43b95db6868
                                    [author] => Array
                                        (
                                            [email] => willemsen.christophe@gmail.com
                                            [name] => Christophe Willemsen
                                        )

                                    [message] => added info about the HA Community
                                    [distinct] => 1
                                    [url] => https://api.github.com/repos/neoxygen/neo4j-neoclient/commits/aee12cfe25590b3eacef59416d50e43b95db6868
                                )

                        )

                )

            [public] => 1
            [created_at] => 2014-11-03T21:46:42Z
            [org] => Array
                (
                    [id] => 2023052
                    [login] => neoxygen
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/neoxygen
                    [avatar_url] => https://avatars.githubusercontent.com/u/2023052?
                )

        )

    [299] => Array
        (
            [id] => 2382858236
            [type] => IssueCommentEvent
            [actor] => Array
                (
                    [id] => 1222009
                    [login] => ikwattro
                    [gravatar_id] =>
                    [url] => https://api.github.com/users/ikwattro
                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?
                )

            [repo] => Array
                (
                    [id] => 25180043
                    [name] => GraphStory/graph-kit-php
                    [url] => https://api.github.com/repos/GraphStory/graph-kit-php
                )

            [payload] => Array
                (
                    [action] => created
                    [issue] => Array
                        (
                            [url] => https://api.github.com/repos/GraphStory/graph-kit-php/issues/20
                            [labels_url] => https://api.github.com/repos/GraphStory/graph-kit-php/issues/20/labels{/name}
                            [comments_url] => https://api.github.com/repos/GraphStory/graph-kit-php/issues/20/comments
                            [events_url] => https://api.github.com/repos/GraphStory/graph-kit-php/issues/20/events
                            [html_url] => https://github.com/GraphStory/graph-kit-php/pull/20
                            [id] => 47450811
                            [number] => 20
                            [title] => refactored app bootstrap
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=2
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [labels] => Array
                                (
                                )

                            [state] => open
                            [locked] =>
                            [assignee] =>
                            [milestone] =>
                            [comments] => 8
                            [created_at] => 2014-10-31T22:32:13Z
                            [updated_at] => 2014-11-03T21:34:52Z
                            [closed_at] =>
                            [pull_request] => Array
                                (
                                    [url] => https://api.github.com/repos/GraphStory/graph-kit-php/pulls/20
                                    [html_url] => https://github.com/GraphStory/graph-kit-php/pull/20
                                    [diff_url] => https://github.com/GraphStory/graph-kit-php/pull/20.diff
                                    [patch_url] => https://github.com/GraphStory/graph-kit-php/pull/20.patch
                                )

                            [body] => What do you think about this kind of index.php refactoring ?

Also I added an index_dev.php that can only be run in local env.

@guillermoandrae pls check boostrap phpunit to see if you're ok
                        )

                    [comment] => Array
                        (
                            [url] => https://api.github.com/repos/GraphStory/graph-kit-php/issues/comments/61552809
                            [html_url] => https://github.com/GraphStory/graph-kit-php/pull/20#issuecomment-61552809
                            [issue_url] => https://api.github.com/repos/GraphStory/graph-kit-php/issues/20
                            [id] => 61552809
                            [user] => Array
                                (
                                    [login] => ikwattro
                                    [id] => 1222009
                                    [avatar_url] => https://avatars.githubusercontent.com/u/1222009?v=2
                                    [gravatar_id] =>
                                    [url] => https://api.github.com/users/ikwattro
                                    [html_url] => https://github.com/ikwattro
                                    [followers_url] => https://api.github.com/users/ikwattro/followers
                                    [following_url] => https://api.github.com/users/ikwattro/following{/other_user}
                                    [gists_url] => https://api.github.com/users/ikwattro/gists{/gist_id}
                                    [starred_url] => https://api.github.com/users/ikwattro/starred{/owner}{/repo}
                                    [subscriptions_url] => https://api.github.com/users/ikwattro/subscriptions
                                    [organizations_url] => https://api.github.com/users/ikwattro/orgs
                                    [repos_url] => https://api.github.com/users/ikwattro/repos
                                    [events_url] => https://api.github.com/users/ikwattro/events{/privacy}
                                    [received_events_url] => https://api.github.com/users/ikwattro/received_events
                                    [type] => User
                                    [site_admin] =>
                                )

                            [created_at] => 2014-11-03T21:34:52Z
                            [updated_at] => 2014-11-03T21:34:52Z
                            [body] => @jeremykendall @guillermoandrae Any update on this one ? Is there something I have to do before merge ?
                        )

                )

            [public] => 1
            [created_at] => 2014-11-03T21:34:52Z
            [org] => Array
                (
                    [id] => 7378594
                    [login] => GraphStory
                    [gravatar_id] =>
                    [url] => https://api.github.com/orgs/GraphStory
                    [avatar_url] => https://avatars.githubusercontent.com/u/7378594?
                )

        )

)
