{"id":14974537,"url":"https://github.com/froiden/laravel-installer","last_synced_at":"2025-04-05T13:10:00.219Z","repository":{"id":62507544,"uuid":"85929694","full_name":"Froiden/laravel-installer","owner":"Froiden","description":"Installer for Laravel Apps","archived":false,"fork":false,"pushed_at":"2024-08-13T10:56:11.000Z","size":2876,"stargazers_count":100,"open_issues_count":5,"forks_count":28,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-04-05T13:09:54.603Z","etag":null,"topics":["installer","laravel","laravel-installer","laravel54"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Froiden.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-03-23T09:15:22.000Z","updated_at":"2025-03-25T08:09:23.000Z","dependencies_parsed_at":"2024-01-09T09:45:34.591Z","dependency_job_id":"50d60094-f210-4e69-86dc-382b5ea3c1a0","html_url":"https://github.com/Froiden/laravel-installer","commit_stats":{"total_commits":45,"total_committers":5,"mean_commits":9.0,"dds":0.1777777777777778,"last_synced_commit":"b7cacd3a9f4623aa009b5659ee9d2d65960d854d"},"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Froiden%2Flaravel-installer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Froiden%2Flaravel-installer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Froiden%2Flaravel-installer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Froiden%2Flaravel-installer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Froiden","download_url":"https://codeload.github.com/Froiden/laravel-installer/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247339158,"owners_count":20923014,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["installer","laravel","laravel-installer","laravel54"],"created_at":"2024-09-24T13:50:42.539Z","updated_at":"2025-04-05T13:10:00.194Z","avatar_url":"https://github.com/Froiden.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Laravel Web Installer\r\n\r\n[![Packagist License](https://poser.pugx.org/froiden/laravel-installer/license)]()\r\n[![Total Downloads](https://poser.pugx.org/froiden/laravel-installer/d/total)](https://packagist.org/packages/froiden/laravel-installer)\r\n\r\nLaravel Web installer checks for the following things and installs the application in one go.\r\n\r\n1. Check For Server Requirements.\r\n2. Check For Folders Permissions.\r\n3. Ability to set database information.\r\n4. Migrate The Database.\r\n5. Seed The Tables.\r\n\r\n## Note:\r\nYou need to have `.env` to the root\r\n\r\n\r\n\r\n# Installation\r\n\r\n1)  If you are running **Laravel 5 or above** :\r\n\r\n```\r\ncomposer require froiden/laravel-installer:1.9.0\r\n```\r\nOR add this line to `composer.json`\r\n\r\n```\r\n\"require\": {\r\n    \"froiden/laravel-installer\": \"1.9.0\"\r\n}\r\n```\r\n2)  If you are running **Laravel 11 or above** :\r\n```\r\ncomposer require froiden/laravel-installer:11.0.0\r\n```\r\nOR add this line to `composer.json`\r\n```\r\n\"require\": {\r\n    \"froiden/laravel-installer\": \"11.0.0\"\r\n}\r\n```\r\n\r\nAfter updating the composer, add the ServiceProvider to the providers array in `config/app.php`.\r\n\r\n```\r\n'providers' =\u003e [\r\n    Froiden\\LaravelInstaller\\Providers\\LaravelInstallerServiceProvider::class,\r\n];\r\n```\r\n\r\n\r\nFor laravel version 11.x and greater, add the serviceprovider to the providers array in `bootstrap/providers.php`.\r\n\r\n```\r\n[\r\n    Froiden\\LaravelInstaller\\Providers\\LaravelInstallerServiceProvider::class,\r\n];\r\n```\r\n\r\n## Usage\r\n\r\nBefore using this package you need to run :\r\n```bash\r\nphp artisan vendor:publish --provider=\"Froiden\\LaravelInstaller\\Providers\\LaravelInstallerServiceProvider\"\r\n```\r\n\r\nYou will notice additional files and folders appear in your project :\r\n \r\n - `config/installer.php` : Set the requirements along with the folders permissions for your application to run, by default the array contains the default requirements for a basic Laravel app.\r\n - `public/installer/assets` : This folder contains a css folder and inside it you will find a `main.css` file, this file is responsible for the styling of your installer, you can overide the default styling and add your own.\r\n - `resources/views/vendor/installer` : Contains the HTML code for your installer.\r\n - `resources/lang/en/installer_messages.php` : This file holds all the messages/text.\r\n\r\n## Installing your application\r\n- **Install:** In order to install your application, go to the `/install` url and follow the instructions.\r\n## Screenshots\r\n \r\n![Laravel web installer](http://public.froid.works/knap1.png)\r\n\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffroiden%2Flaravel-installer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffroiden%2Flaravel-installer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffroiden%2Flaravel-installer/lists"}