Skip to content

Commit dbd7398

Browse files
committed
Merge branch 'release/0.0.2'
2 parents 23d8e8e + 67161af commit dbd7398

File tree

5 files changed

+481
-297
lines changed

5 files changed

+481
-297
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,23 @@ Install with composer
1717
}
1818
```
1919

20-
The idea for this library comes from this blog post: [Please. Don't Patch Like An Idiot.](http://williamdurand.fr/2014/02/14/please-do-not-patch-like-an-idiot/) by
20+
The idea for this library comes from this blog post: [Please. Don't Patch Like An Idiot.](http://williamdurand.fr/2014/02/14/please-do-not-patch-like-an-idiot/) by [William Durand](https://github.com/willdurand)
2121

22-
It lets you patch resources in an expressive way
22+
> It lets you patch resources in an *expressive way*
2323
2424
**PATCH /users/1**
2525
``` json
2626
{ "op": "data", "property": "username", "value": "new username" }
2727
```
2828

29-
And let you patch entire collections with multiple operations
29+
And let you **patch entire collections** with multiple operations
3030

3131
**PATCH /books**
3232
``` json
3333
[{ "op": "set_as_read" }, { "op": "return_to_library", "address": "221 B Baker St, London, England"}]
3434
```
3535

36-
It comes with a Symfony bundle.
36+
> it includes also a **Symfony bundle**
3737
3838
Still interested? [Head over to the wiki...](https://github.com/matteosister/patch-manager/wiki) for documentation
3939

bin/phpunit

-1
This file was deleted.

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"symfony/dependency-injection": ">=2.3.0,<3.0.0",
1111
"symfony/http-kernel": ">=2.3.0,<3.0.0",
1212
"symfony/config": ">=2.3.0,<3.0.0",
13-
"symfony/event-dispatcher": "~2.1",
13+
"symfony/event-dispatcher": ">=2.3.0,<3.0.0",
1414
"phpcollection/phpcollection": "~0.4"
1515
},
1616
"require-dev": {

0 commit comments

Comments
 (0)