Download the PHP package innoboxrr/search-surge without Composer

On this page you can find all versions of the php package innoboxrr/search-surge. 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 search-surge

Innoboxrr SearchSurge para Laravel

SearchSurge es un paquete que proporciona una forma elegante y flexible de filtrar y buscar datos en tu aplicación Laravel. Utiliza una clase de construcción para permitir consultas complejas con facilidad.

Instalación

Puedes instalar el paquete a través de composer:

```bash composer require innoboxrr/search-surge ```

Upgrade

V1.0 -> V2.0

Posteriormente se puede seguir llamando a $data como un objeto para llamar las propiedades tal como se hacía con request.

Uso

La clase principal de este paquete es Innoboxrr\SearchSurge\Search\Builder. Así es como puedes usarla:

Uso Básico

Primero, utiliza la clase Builder en tu controlador o servicio:

```php use Innoboxrr\SearchSurge\Search\Builder; ```

Luego, puedes crear una nueva instancia del constructor o inyectarlo, y llamar al método get, pasando el modelo, los datos y la configuración opcional:

```php $builder = new Builder();

$resultado = $builder->get(User::class, $data, $options); ```

Personalización

Puedes personalizar varias partes del comportamiento de búsqueda:

Estos se pueden establecer utilizando el array $options pasado al método get.

Filtros

Puedes crear filtros personalizados dentro del directorio especificado en filtersPath. El constructor aplicará automáticamente estos filtros a tu consulta.

Ejemplo

Supongamos que tienes un modelo de Usuario y quieres filtrar por estado activo y rol. Puedes crear filtros para estos y luego usar el constructor:

```php $data = [ 'active' => 1, 'role' => 'admin', ];

$options = [ 'filtersPath' => 'app/Filters', ];

$resultado = $builder->get(User::class, $data, $options); ```

Contribuciones

Por favor, consulta CONTRIBUTING.md para más detalles.

Seguridad

Si descubres algún problema relacionado con la seguridad, por favor envía un correo electrónico al desarrollador en lugar de utilizar el rastreador de problemas.

Licencia

La Licencia MIT (MIT). Por favor, consulta Archivo de Licencia para más información.

Soporte

Para soporte general y preguntas, por favor utiliza la sección de problemas en GitHub.

Donaciones

Si este paquete te ha sido útil y te gustaría apoyar el desarrollo continuo, considera hacer una donación en este enlace.

¡Feliz búsqueda! 🚀


All versions of search-surge with dependencies

PHP Build Version
Package Version
No informations.
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 innoboxrr/search-surge contains the following files

Loading the files please wait ....