Download the PHP package saman9074/quickstart without Composer

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

Laravel Quickstart Installer

Latest Version on Packagist Total Downloads The Laravel Quickstart Installer is a package designed to provide a user-friendly, web-based interface for installing your Laravel applications. It guides users through a step-by-step setup process, similar to popular CMS platforms, making initial application deployment straightforward.

This package is developed by Saman9074 (Ali Abdi).

Features

Requirements

Installation

  1. Require the package using Composer:

  2. Publish package assets: This will publish the configuration file, views (optional), and language files (optional).

    You can also publish specific groups using tags:

    • Config: --tag="quickstart-config"
    • Views: --tag="quickstart-views"
    • Language files: --tag="quickstart-lang"

Configuration

After publishing, the main configuration file will be located at config/quickstart.php.

Key options include:

Usage

  1. Prerequisites for the target Laravel application:
    • Ensure no .env file exists, or if it does, its database details are not yet configured if you want the installer to set them up. The installer will attempt to copy .env.example if .env is missing.
    • A database server (MySQL, PostgreSQL, etc.) should be running.
    • Crucially, the database schema itself (e.g., your_app_database) must be created manually on your database server before running the installer's database setup step. The installer will test the connection to this existing database and then run migrations. It does not create the database schema automatically.
  2. Accessing the Installer: Navigate to the installer URL in your browser. By default: http://your-laravel-app.test/quickstart-install (Replace your-laravel-app.test with your application's URL and use your configured route_prefix).
  3. Follow the On-Screen Instructions:
    • Welcome: Choose your language and get an overview.
    • Server Requirements: Checks PHP version and extensions.
    • Folder Permissions: Verifies writability of key directories.
    • Environment Configuration: Fill in application name, environment, URL, database credentials, mail settings, etc. The database connection will be tested here.
    • Finalize Installation: Confirms settings and runs post-installation commands (migrations, etc.).
    • Finished: Displays a success message and links to your application.

Localization

Artisan Command (Optional)

A basic Artisan command is included:

This command currently performs initial checks and guides the user to the web installer. It can be expanded for a full CLI installation if needed.

Troubleshooting

"The connection was reset" (browser) / "Environment modified. Restarting server..." (console):
This is normal if you are using php artisan serve. When the installer updates the .env file, php artisan serve restarts. Simply wait for the server to restart (you'll see "Server running on..." in the console) and then manually navigate to the next step of the installer in your browser (e.g., /quickstart-install/finalize).

"Unknown database 'database_name'" error:
This means the database name you provided in the "Environment Configuration" step does not exist on your database server. You must create the database manually (e.g., via phpMyAdmin, Sequel Pro, or SQL command CREATE DATABASE database_name;) before the installer can run migrations on it. The installer tests the connection to this database but does not create it.

Permission denied errors:
Ensure the storage/ and bootstrap/cache/ directories in your Laravel application are writable by the web server process.

Contributing

Contributions are welcome! If you'd like to contribute, please follow these general guidelines:

Fork the repository.

Create a new branch for your feature or bug fix.

Write tests for your changes.

Ensure your code follows existing coding standards.

Submit a pull request with a clear description of your changes.

License

The Laravel Quickstart Installer is open-source software licensed under the MIT license. Please see the LICENSE file for more details.


All versions of quickstart with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1|^8.2|^8.3
illuminate/support Version ^10.0|^11.0|^12.0
illuminate/console Version ^10.0|^11.0|^12.0
illuminate/filesystem Version ^10.0|^11.0|^12.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 saman9074/quickstart contains the following files

Loading the files please wait ....