Download the PHP package sensy/scrud without Composer

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

Sensy/Scrud

Sensy/Scrud is a Laravel package that provides a CRUD (Create, Read, Update, Delete) starter kit. It helps you quickly scaffold CRUD operations for your models, making it easier to build and maintain your Laravel applications.

Requirements

Features

Installation

The first step is to follow and make sure you complete installation of jetstream from their official website.

NOTE: TEAMS is not yet supported so please dont use teams.

To install the package, use Composer:

After installing, add the service provider in your providers array in your app.php file.

Then run initial installations

Available Commands

s-crud:setup

Create models without migrations by default. Use the --m option to create the with migration.

s-crud:crud

Scaffold a full CRUD for a given model.

This command will generate:

s-crud:create-user

Create a new user with an optional role.

s-crud:extractor

Extract database data to be synced/Deployed.

s-crud:deploy

Deploy the system.

You can use --live to deploy to a live environment

Usage

Scaffolding CRUD Operations

To scaffold CRUD operations for a model:

This will generate the necessary controller, views, and routes to manage records for your model.

Customizing Templates

You can customize the generated templates by editing the files in resources/views/vendor/scrud/.

Configuration

You can configure the package by editing the configuration file located at config/scrud.php.

Example

To scaffold CRUD operations for a Product model:

First, set up the model and migration:

Optionally, use the --m flag to create only the model:

After modifying the generated files as needed, you can scaffold the CRUD operations:

This will generate the necessary controller, views, and routes to manage products in your application.

Other Assets

Logo

To modify the logo, replace the file public/backend/assets/img/logo.png

Contributing

Thank you for considering contributing to Sensy/Scrud! Please read the CONTRIBUTING.md file for details on our code of conduct and the process for submitting pull requests.

License

Sensy/Scrud is open-source software licensed under the MIT license.

Credits

TODO


All versions of scrud with dependencies

PHP Build Version
Package Version
Requires php Version ^8.0
laravel/framework Version ^8.0|^9.0|^10.0|^11.0
livewire/livewire Version ^3.0
spatie/laravel-permission Version ^5.0|^6.0
laravel/jetstream Version ^2.0|^3.0|^4.0
lab404/laravel-impersonate Version ^1.7
orangehill/iseed Version ^3.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 sensy/scrud contains the following files

Loading the files please wait ....