Skip to content

Releases: micheleangioni/support

v2.11

14 May 21:09
Compare
Choose a tag to compare

Change Log:

  • Added a partial and yet unstable Lumen support
  • Now fully PSR-2 compliant

v2.10.2

20 Mar 20:59
Compare
Choose a tag to compare

Changes:

  • Now Support is PSR-2 compliant
  • Added missing custom validators error messages for alphanumeric_names and alphanumeric_dotted_names
  • Added several missing Doc blocks
  • Updated readme

v2.10.1

27 Jan 22:19
Compare
Choose a tag to compare

Now mockery package version requirement is "^0.9"

v2.10

27 Jan 20:57
Compare
Choose a tag to compare

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

28 Dec 16:03
Compare
Choose a tag to compare

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

03 Nov 22:41
Compare
Choose a tag to compare

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

28 Sep 17:56
Compare
Choose a tag to compare

Added alphanumeric_names validation rules. It allows letters, numbers, menus, apostrophes, underscores and spaces.

Added getIn() and getNotIn() query methods

29 Aug 17:09
Compare
Choose a tag to compare

Added getIn() and getNotIn() query methods in the Abstract Eloquent Repository

Added customizable formats in Helpers methods

05 Aug 18:07
Compare
Choose a tag to compare

Now getDate() and getTime() methods in Helpers class can return a custom format.

Laravel 5.1 fully consistent

09 Jul 18:00
Compare
Choose a tag to compare

Added default array [] on create query methods to be fully consistent with Laravel 5.1.
Minor doc tweaks.