Download the PHP package redbastie/skele without Composer

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

NO LONGER MAINTAINED

This package is no longer maintained. Please consider my latest package here: https://github.com/redbastie/tailwire


Skele

Rapid Laravel Livewire + TailwindCSS app development package.

Requirements

Packages Used

Features

Installation

Create a new Laravel 8 project:

laravel new my-app

Configure your .env app, database, and mail values:

APP_*
DB_*
MAIL_*

Require Skele via composer:

composer require redbastie/skele

Install Skele:

php artisan skele:install

Commands

Install

php artisan skele:install

Installs the base index component, user model & factory, config files, PWA icon & manifest, CSS & JS assets, index & layout views, and configures Tailwind via webpack.

Auth

php artisan skele:auth

Generates auth scaffolding components & views for login, logout, password forgot & reset, register, and home.

Model

php artisan skele:model {class}

Generates a new model & factory with automatic migration methods included.

Examples

php artisan skele:model Vehicle
php artisan skele:model Admin/Vehicle  

Migrate

php artisan skele:migrate {--fresh} {--seed}

Runs the automatic migrations via the migration methods in your models. This uses doctrine in order to diff & apply the necessary changes to your database. Traditional Laravel migration files will be run before automatic migration methods. Optionally use --fresh to wipe the database before, and --seed to run seeders after.

Examples

php artisan skele:migrate
php artisan skele:migrate --fresh
php artisan skele:migrate --fresh --seed

Component

php artisan skele:component {class} {--full} {--modal}

Generates a new component & view file. Optionally use the --full option to generate a full-page component with automatic routing properties included, or --modal to generate a modal component.

Examples

php artisan skele:component Partial
php artisan skele:component Contact --full
php artisan skele:component Alert --modal

CRUD

php artisan skele:crud {class}

Generates CRUD components & views for a specified model class. If the model does not currently exist, it will be created automatically.

Examples

php artisan skele:crud Vehicle
php artisan skele:crud Admin/Vehicle

List

php artisan skele:list {class} {--model=}

Generates a list component with searching & infinite scrolling for the specified model. A --model must be specified.

Examples

php artisan skele:list Vehicles --model=Vehicle
php artisan skele:list Admin/Vehicles --model=Admin/Vehicle

All versions of skele with dependencies

PHP Build Version
Package Version
Requires barryvdh/laravel-ide-helper Version ^2.0
blade-ui-kit/blade-heroicons Version ^0.3
doctrine/dbal Version ^3.0
jamesmills/laravel-timezone Version ^1.9
laravel/framework Version ^8.0
livewire/livewire Version ^2.0
lukeraymonddowning/honey Version ^0.3
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 redbastie/skele contains the following files

Loading the files please wait ....