Download the PHP package metafroliclabs/laravel-kit without Composer

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

Laravel Logo

Laravel Starter Boilerplate

This project provides a starter boilerplate for Laravel applications with essential authentication, profile management, and content page routes.

Installation

  1. Create a new project using Composer:

  2. Setup environment:

    • Configure database and application settings.
  3. Run migrations:

  4. Install Passport (if required for Sanctum):

  5. Start the application:

Available Routes

Authentication Routes

Method Endpoint Controller Description
POST /signup AuthController User signup
POST /login AuthController User login
POST /logout AuthController User logout (auth)

Middleware: auth:sanctum is required for /logout.

Password Recovery Routes

Method Endpoint Controller Description
POST /forget-password ForgetPasswordController Request password reset
POST /verify-code ForgetPasswordController Verify reset code
POST /set-password ForgetPasswordController Reset password

Profile Management (Protected)

Method Endpoint Controller Description
GET /get-profile ProfileController Get user profile
POST /edit-profile ProfileController Edit user profile
POST /change-password ProfileController Change password
GET /notifications/all/list ProfileController List all notifications
GET /notifications/read/list ProfileController List read notifications
GET /notifications/unread/list ProfileController List unread notifications
GET /notifications/unread/count ProfileController Get unread notification count
POST /mark-notification/{id} ProfileController Mark a single notification as read/unread
POST /mark-all-as-read ProfileController Mark all notifications as read

All routes require auth:sanctum middleware.

Page Routes (Protected)

Method Endpoint Controller Description
POST /contact-us PageController Submit contact form
GET /content PageController Get static content

auth:sanctum middleware is required.

License

This project is licensed under the MIT License.


All versions of laravel-kit with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
guzzlehttp/guzzle Version ^7.2
laravel/framework Version ^10.10
laravel/sanctum Version ^3.3
laravel/tinker Version ^2.8
stripe/stripe-php Version ^14.8
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 metafroliclabs/laravel-kit contains the following files

Loading the files please wait ....