Skip to content

Commit 6b1cc14

Browse files
committed
Initial commit
0 parents  commit 6b1cc14

31 files changed

+3127
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
bin
2+
.idea
3+
vendor

.travis.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
language: php
2+
php:
3+
- "5.5"
4+
- "5.6"
5+
- "7.0"
6+
- "hhvm"
7+
8+
before_script:
9+
- composer install --dev
10+
11+
script: ./bin/phpunit --coverage-text
12+
13+
matrix:
14+
allow_failures:
15+
- php: "hhvm"

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Serializer for PHP

composer.json

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
{
2+
"name": "nilportugues/serializer",
3+
"type": "library",
4+
"description": "Serialize PHP variables, including objects, in any format. Support to unserialize it too.",
5+
"keywords": ["json", "serialize", "serializer"],
6+
"homepage": "http://nilportugues.com",
7+
"license": "MIT",
8+
"authors": [
9+
10+
{
11+
"name": "Nil Portugués Calderó",
12+
"email": "[email protected]",
13+
"role": "Project Lead Developer"
14+
15+
},
16+
{
17+
"name": "Zumba Fitness, LLC",
18+
"email": "[email protected]",
19+
"role": "Author of the original repository: https://github.com/zumba/json-serializer"
20+
},
21+
{
22+
"name": "Juan Basso",
23+
"email": "[email protected]",
24+
"role": "Author of the original repository: https://github.com/zumba/json-serializer"
25+
}
26+
],
27+
"require": {
28+
"php": ">=5.5.0"
29+
},
30+
"require-dev": {
31+
"phpunit/phpunit": "4.4.*",
32+
"fabpot/php-cs-fixer": "^1.9",
33+
"mmoreram/php-formatter": "dev-master"
34+
},
35+
"autoload": {
36+
"psr-4": {
37+
"NilPortugues\\Serializer\\": "src/"
38+
}
39+
},
40+
"autoload-dev": {
41+
"psr-4": {
42+
"NilPortugues\\Test\\Serializer\\": "tests/"
43+
}
44+
},
45+
"config": {
46+
"bin-dir": "bin/"
47+
}
48+
}

0 commit comments

Comments
 (0)