File tree 3 files changed +6
-5
lines changed
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ See [compatibility docs](docs/compatibility.md) for details about backward compa
6
6
7
7
## CHANGE LOG ##
8
8
9
+ * v3.0.1 (2017-02-23)
10
+ * Updated ` composer.json ` to list ` laravel/framework ` among requirements
11
+
9
12
* v3.0.0 (2017-02-23)
10
13
* ** BACKWARD INCOMPATIBILE CHANGES**
11
14
* [ RB-17] ` success() ` now allows to return API code as well
Original file line number Diff line number Diff line change 2
2
"name" : " marcin-orlowski/laravel-api-response-builder" ,
3
3
"description" : " Helps building nice, normalized and easy to consume REST API responses." ,
4
4
"homepage" : " https://github.com/MarcinOrlowski/laravel-api-response-builder" ,
5
- "version" : " 3.0.0 " ,
5
+ "version" : " 3.0.1 " ,
6
6
"keywords" : [
7
7
" laravel" ,
8
8
" json" ,
23
23
"issues" : " https://github.com/MarcinOrlowski/laravel-api-response-builder/issues"
24
24
},
25
25
"require" : {
26
- "php" : " >=5.5.9"
26
+ "php" : " >=5.5.9" ,
27
+ "laravel/framework" : " ^5.1"
27
28
},
28
29
"autoload" : {
29
30
"psr-4" : {
42
43
"phpunit/php-code-coverage" : " ^2.2.4" ,
43
44
"mockery/mockery" : " ^0.9.8" ,
44
45
"orchestra/testbench" : " ~3.1" ,
45
- "laravel/framework" : " ^5.1" ,
46
46
"codacy/coverage" : " ^1.0"
47
47
}
48
48
}
Original file line number Diff line number Diff line change 2
2
3
3
` ResponseBuilder ` follows [ Semantic Versioning] ( http://semver.org/ ) .
4
4
5
- You need to worry about backward compatibility if you are upgrading from previous major version of the package.
6
-
7
5
### v3 ###
8
6
9
7
* ` success() ` now accepts (optional) ` api_code ` too, therefore signature of this method as well as and argument
You can’t perform that action at this time.
0 commit comments