Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
brettminnie committed Apr 13, 2015
1 parent 70d4fdf commit 2680a61
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.idea/
vendor/
26 changes: 26 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "brettminnie/breakfast-serializer",
"type": "library",
"description": "Library for (de-)serializing data of any complexity; supports XML, JSON, and YAML. Replacement with hopeful backwards compatibility with JMS",
"keywords": ["serialization", "deserialization", "json", "jaxb", "xml"],
"license": "MIT",
"authors": [
{
"name": "Brett Minnie",
"email": "brett@bdb-studios.co.uk"
}
],
"require": {
"php": ">=5.3.2"
},
"minimum-stability": "dev",
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-0": {
"BDBStudios\\Serializer": "src/"
}
}
}

0 comments on commit 2680a61

Please sign in to comment.