Skip to content
This repository has been archived by the owner on Feb 2, 2018. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromegamez committed Feb 23, 2015
1 parent 7809952 commit b1d55b5
Show file tree
Hide file tree
Showing 17 changed files with 3,619 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# editorconfig.org
root = true

[*]
indent_style = space
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.yml]
indent_size = 4

[*.json]
indent_size = 4

[*.md]
trim_trailing_whitespace = false
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/vendor/
25 changes: 25 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "kreait/tape-recorder-subscriber",
"description": "Record HTTP interactions to replay them later.",
"license": "MIT",
"authors": [
{
"name": "Jerome Gamez",
"email": "[email protected]"
}
],
"require": {
"egeloen/http-adapter": "0.6.*",
"symfony/yaml": "~2.6",
"symfony/event-dispatcher": "~2.6"
},
"require-dev": {
"phpunit/phpunit": "~4.5"
},
"autoload": {
"psr-4": { "Ivory\\HttpAdapter\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Ivory\\Tests\\HttpAdapter\\": "tests/" }
}
}
Loading

0 comments on commit b1d55b5

Please sign in to comment.