forked from basho/riak-php-client
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added short license header for Apache 2.0 license to all class files.…
… Added phpstorm project files to gitignore. Added composer vendor directory to gitignore. Added composer.lock file to gitignore. Removed Basho from the directory tier and adjusted the autoload from PSR-0 -> PSR-4. Removed home grown test suite, added phpunit as composer dependency for dev. Moved Riak class outside of Basho\Riak namespace so you didn't have Basho\Riak\Riak... Moved copyright from the Apache License short header to the Class Doc Comment annotations. Began developing Node / NodeBuilder code to allow for quickly building out node pool with client applications in preparation of supporting connections to a pool of nodes versus single instance.
- Loading branch information
Christopher Mancini
committed
Oct 14, 2014
1 parent
49f6273
commit 0b58508
Showing
20 changed files
with
1,004 additions
and
1,560 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,26 @@ | ||
{ | ||
"name": "basho/riak", | ||
"description": "Official Riak PHP client for PHP 5.3", | ||
"description": "Official Riak client for PHP", | ||
"keywords": ["riak", "client", "driver", "database", "nosql"], | ||
"homepage": "http://basho.com/riak/", | ||
"license": "Apache-2.0", | ||
"authors": [ | ||
{ | ||
"name": "Riak Team", | ||
"name": "Riak Team & Contributors", | ||
"homepage": "https://github.com/basho/riak-php-client/contributors" | ||
} | ||
], | ||
"autoload": { | ||
"psr-0": { "Basho": "src/" } | ||
"psr-4": {"Basho\\": "src/"} | ||
}, | ||
"require": { | ||
"php": ">=5.3.0", | ||
"centraldesktop/protobuf-php": "0.6.*", | ||
"php": ">=5.4", | ||
"ext-json": "*", | ||
"ext-mbstring": "*", | ||
"ext-curl": "*" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "4.3.1" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.