Skip to content

Commit

Permalink
Merge pull request #3 from centraldesktop/feature/options
Browse files Browse the repository at this point in the history
feature(safety)  Use an option type for optional elements to aid cleaner
  • Loading branch information
treyhyde committed Oct 10, 2014
2 parents cab6f49 + e427daa commit abbf246
Show file tree
Hide file tree
Showing 5 changed files with 580 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*.lock
build
vendor
*.iml
.idea
Expand Down
33 changes: 17 additions & 16 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,28 @@
{
"name": "centraldesktop/protobuf-php",
"name" : "centraldesktop/protobuf-php",
"description": "PHP implementation of Google's Protocol Buffers",
"keywords": ["protobuf", "protocol buffer", "serializing"],
"homepage": "https://github.com/drslump/Protobuf-PHP",
"type": "library",
"license": "MIT",
"authors": [
"keywords" : ["protobuf", "protocol buffer", "serializing"],
"homepage" : "https://github.com/drslump/Protobuf-PHP",
"type" : "library",
"license" : "MIT",
"authors" : [
{
"name": "Iván -DrSlump- Montes",
"email": "[email protected]",
"name" : "Iván -DrSlump- Montes",
"email" : "[email protected]",
"homepage": "https://github.com/drslump/Protobuf-PHP"
}
],
"bin": ["protoc-gen-php.bat", "protoc-gen-php.php"],
"require": {
"php" : ">=5.3.0",
"symfony/console" : "2.*",
"ext-mbstring" : "*"
"bin" : ["protoc-gen-php.bat", "protoc-gen-php.php"],
"require" : {
"php" : ">=5.3.0",
"ext-mbstring" : "*",
"phpoption/phpoption": "1.4.0",
"symfony/console" : "2.*"
},
"require-dev": {
"phpunit/phpunit" : "3.7.*"
},
"autoload": {
"phpunit/phpunit": "3.7.*"
},
"autoload" : {
"psr-0": {
"DrSlump": "library/"
}
Expand Down
Loading

0 comments on commit abbf246

Please sign in to comment.