Skip to content

Releases: smhdhsn/zed

v1.0.6

28 Sep 13:09
Compare
Choose a tag to compare

Minor issues fixed

v1.0.5

28 Sep 12:16
Compare
Choose a tag to compare

excluded composer.lock from project's repository.

v1.0.4

28 Sep 06:47
Compare
Choose a tag to compare

Update composer.lock

v1.0.3

25 Sep 14:52
Compare
Choose a tag to compare

Minor issues fixed

v.1.0.2

25 Sep 14:43
Compare
Choose a tag to compare

🍾 Excluded core folder from project repository

v1.0.1

25 Sep 14:25
2606596
Compare
Choose a tag to compare

Major changes in the core code's structure.

ℹ️ This release doesn't include any changes in framework's core methods, everything works the same as before.

v1.0.0

03 Sep 11:38
60de96e
Compare
Choose a tag to compare

ORM:

  • Find (Finding by ID)
  • Where (Finding by columns)
  • Create
  • Update
  • Delete

Routing:

  • Defining routes via (string that maps controller and related method, array that maps controller and related method, closure).
  • Route parameter binding.

Migration:

Commands for managing and keeping track of migration state

php command migrate | migrate:rollback | migrate:fresh | migrate:reset

Command:

Creating custom commands and mapping them inside Routes/command.

Request Validation:

Simple request validation rules

  • required
  • numeric
  • string
  • email
  • max
  • min
  • unique