Skip to content

Commit

Permalink
Added coveralls to require dev
Browse files Browse the repository at this point in the history
  • Loading branch information
hollodotme committed Jan 30, 2016
1 parent be82745 commit 53a36dd
Show file tree
Hide file tree
Showing 2 changed files with 675 additions and 32 deletions.
59 changes: 31 additions & 28 deletions composer.json
@@ -1,30 +1,33 @@
{
"name": "hollodotme/fluid-validator",
"description": "Validating values with a fluid interfaced class",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Holger Woltersdorf",
"email": "hw@hollo.me"
}
],
"support": {
"email": "hw@hollo.me",
"source": "https://github.com/hollodotme/fluid-validator"
},
"require": {
"php": ">=5.5"
},
"autoload": {
"psr-4": {
"hollodotme\\FluidValidator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"hollodotme\\FluidValidator\\Tests\\Unit\\": "tests/Unit/"
}
}
"name": "hollodotme/fluid-validator",
"description": "Validating values with a fluid interfaced class",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Holger Woltersdorf",
"email": "hw@hollo.me"
}
],
"support": {
"email": "hw@hollo.me",
"source": "https://github.com/hollodotme/fluid-validator"
},
"require": {
"php": ">=5.5"
},
"require-dev": {
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-4": {
"hollodotme\\FluidValidator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"hollodotme\\FluidValidator\\Tests\\Unit\\": "tests/Unit/"
}
}
}

0 comments on commit 53a36dd

Please sign in to comment.