Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
nilportugues committed Jul 4, 2015
0 parents commit 6b1cc14
Show file tree
Hide file tree
Showing 31 changed files with 3,127 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
bin
.idea
vendor
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: php
php:
- "5.5"
- "5.6"
- "7.0"
- "hhvm"

before_script:
- composer install --dev

script: ./bin/phpunit --coverage-text

matrix:
allow_failures:
- php: "hhvm"
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Serializer for PHP
48 changes: 48 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"name": "nilportugues/serializer",
"type": "library",
"description": "Serialize PHP variables, including objects, in any format. Support to unserialize it too.",
"keywords": ["json", "serialize", "serializer"],
"homepage": "http://nilportugues.com",
"license": "MIT",
"authors": [

{
"name": "Nil Portugués Calderó",
"email": "[email protected]",
"role": "Project Lead Developer"

},
{
"name": "Zumba Fitness, LLC",
"email": "[email protected]",
"role": "Author of the original repository: https://github.com/zumba/json-serializer"
},
{
"name": "Juan Basso",
"email": "[email protected]",
"role": "Author of the original repository: https://github.com/zumba/json-serializer"
}
],
"require": {
"php": ">=5.5.0"
},
"require-dev": {
"phpunit/phpunit": "4.4.*",
"fabpot/php-cs-fixer": "^1.9",
"mmoreram/php-formatter": "dev-master"
},
"autoload": {
"psr-4": {
"NilPortugues\\Serializer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NilPortugues\\Test\\Serializer\\": "tests/"
}
},
"config": {
"bin-dir": "bin/"
}
}
Loading

0 comments on commit 6b1cc14

Please sign in to comment.