Skip to content

Commit

Permalink
Use PRETTY_PRINT syntax and reorder keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmichot committed Jul 6, 2016
1 parent 693d25a commit adb85bf
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions composer.json
@@ -1,7 +1,18 @@
{
"name": "mockery/mockery",
"description": "Mockery is a simple yet flexible PHP mock object framework for use in unit testing with PHPUnit, PHPSpec or any other testing framework. Its core goal is to offer a test double framework with a succinct API capable of clearly defining all possible object operations and interactions using a human readable Domain Specific Language (DSL). Designed as a drop in alternative to PHPUnit's phpunit-mock-objects library, Mockery is easy to integrate with PHPUnit and can operate alongside phpunit-mock-objects without the World ending.",
"keywords": ["library", "testing", "test", "stub", "mock", "mockery", "test double", "tdd", "bdd", "mock objects"],
"keywords": [
"bdd",
"library",
"mock",
"mock objects",
"mockery",
"stub",
"tdd",
"test",
"test double",
"testing"
],
"homepage": "http://github.com/padraic/mockery",
"license": "BSD-3-Clause",
"authors": [
Expand All @@ -25,7 +36,9 @@
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-0": { "Mockery": "library/" }
"psr-0": {
"Mockery": "library/"
}
},
"extra": {
"branch-alias": {
Expand Down

0 comments on commit adb85bf

Please sign in to comment.