-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 6b1cc14
Showing
31 changed files
with
3,127 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
bin | ||
.idea | ||
vendor |
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 |
---|---|---|
@@ -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" |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
# Serializer for PHP |
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 |
---|---|---|
@@ -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/" | ||
} | ||
} |
Oops, something went wrong.