Download the PHP package pacerit/laravel-core without Composer

On this page you can find all versions of the php package pacerit/laravel-core. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-core

Laravel Core

GitHub tag (latest by date) GitHub Packagist PHP from Packagist StyleCI Build Status

Package of core classes that provide standardization in usage of Services, Repositories etc. for Laravel and Lumen framework.

Installation

You can install this package by composer:

composer require pacerit/laravel-core

Version compatibility

Laravel

Framework Package Note
5.8.x ^1.x.x No longer maintained.
6.0.x ^2.x.x Bug fixes only.
7.x.x ^3.x.x Bug fixes only.
8.x.x ^4.x.x PHP ^8.0 Supported from 4.0.4
9.x.x ^5.x.x

Lumen

Framework Package Note
5.8.x ^1.1.x No longer maintained.
6.0.x ^2.x.x Bug fixes only.
7.x.x ^3.x.x Bug fixes only.
8.x.x ^4.x.x PHP ^8.0 Supported from 4.0.4
9.x.x ^5.x.x

Classes included

Basic classes

CoreEntity::class - base class models
CoreRepository::class - base class of repositories (provided by package)
CoreService::class - base class of services
CoreFormatter::class - base class of formatter
CoreException::class - base class of exceptions

Traits

ScenatioTrait::class
StringTrait::class
NumberTrait::class
XMLTrait::class

Implementation

Entities implementation

In order to use Service, Repositories or Formatter classes, first you must prepare your entities. Every entity in you application must:

For example, this is implementation of Example entity:

Example class:

ExampleInterface:

Interface and entity class must be bind in you app ServiceProvider:

Using UUID's in Entity

To use UUID feature install suggested ramsey/uuid package

This package provides possibility to use UUID's in Entities as secondary key, for external use (i.e. in routes). It still requires to use integer type ID's as Primary keys in your database.

To use UUID's in your Entity, it must:

In your migration create field with "uuid" key using uuid() method.

UUID's will bu automatically generated when new entity is created. If you use Services, you can add WithUUID trait to your implementation of CoreService class to add methods that are helpful when using UUID's.

Repositories implementation and usage

Documentation of Repository can be found here.

Services implementation

To use Service, create service class that:

For example, this is implementation of service for Example entity:

ExampleServiceInterface:

ExampleService class. In __construct() function of class, provide class of repository for entity, and set it by setRepository() function. Optionally you can pass formatter for entity and set if by setFormattter() function to provide formatting functionality. Provided classes must be implementation of CoreRepository/CoreFormatter.

Using services

To use Service in controller or other class you can use dependency injection or Container. Below is sample code of using service in controller.

Available methods

Traits

ScenarioTrait

ScenarioTrait contains very useful functions, if we want use different class, based by some key (i.e. "type" field in entity).

For example - we have abstract "PaymentService" class with not implemented "create()" method. We create two classes that extend this class and implement create() function - each class for different payment provider:

* DummyProviderPaymentService::class - for "DummyProvider"
* OtherDummyProviderPaymentService::class - for "OtherDummyProvider"

each of them implements the create() function a little differently.

Normally if we want call create() function in matching class we will be do it like this:

But if this class have dependency injection, that is not possible. And is not very elegant.

Here comes help from ScenarioTrait. With this class, we can solve this problem, for example, in this way:

That's it. And yes - we can pass only namespace of class (even with dependency injection) - new instance will be created while call getScenarioInstance() method. Of course you can pass exist instance of class (.i.e. from dependency injection) - it's up to you.

Changelog

Go to the Changelog for a full change history of the package.

Testing

composer test

Security Vulnerabilities

If you discover a security vulnerability within package, please send an e-mail to Wiktor Pacer via [email protected]. All security vulnerabilities will be promptly addressed.

License

This package is open-source software licensed under the MIT license.


All versions of laravel-core with dependencies

PHP Build Version
Package Version
Requires php Version ^8.0
ext-json Version *
ext-libxml Version *
ext-simplexml Version *
illuminate/contracts Version ^9.0
illuminate/database Version ^9.0
illuminate/support Version ^9.0
illuminate/container Version ^9.0
pacerit/laravel-repository Version ^5.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package pacerit/laravel-core contains the following files

Loading the files please wait ....