Releases: micheleangioni/support
v2.11
Change Log:
- Added a partial and yet unstable Lumen support
- Now fully PSR-2 compliant
v2.10.2
Changes:
- Now Support is PSR-2 compliant
- Added missing custom validators error messages for
alphanumeric_names
andalphanumeric_dotted_names
- Added several missing Doc blocks
- Updated readme
v2.10.1
Now mockery package version requirement is "^0.9"
v2.10
Updated AbstractEloquentRepopitory:
Now $where = array() parameters can contain null values. For example
$where = [
'user_id' => null
'name' => 'my name'
];
will work fine and will act as a
->whereNull('user_id')
->where('name', 'my name')
clause.
v2.9
Change list:
- Fixed bug in isInt() method in Helpers class;
- updateOrCreateBy() Abstract Repo method now always returns a model;
- Added getHas() and destroyBy() methods in Abstract Repo;
- Has() method in Abstract Repo is now deprecated.
Added alphanumeric_dotted_names validation rules and fixed possible time zone bug in Helpers class
alphanumeric_dotted_names validation rule has been to the list of custom validators.
Furthermore, a possible bug related to time zones use has been fixed in date/time methods of Helpers class.
Added alphanumeric_names validation rules
Added alphanumeric_names validation rules. It allows letters, numbers, menus, apostrophes, underscores and spaces.
Added getIn() and getNotIn() query methods
Added getIn() and getNotIn() query methods in the Abstract Eloquent Repository
Added customizable formats in Helpers methods
Now getDate() and getTime() methods in Helpers class can return a custom format.
Laravel 5.1 fully consistent
Added default array [] on create query methods to be fully consistent with Laravel 5.1.
Minor doc tweaks.