Installation

How to install Apysey in your Laravel project?

From the Apysey website dashboard and after purchasing a license, you will be able to download the compressed "Zip" file of the package.

First, unzip the package into a directory named Apyseyat the root of your project.

Once unzipped, you will need to add this configuration to your composer.json

composer.json
"repositories": [
    {
        "type": "path",
     	  "url": "./apysey"
	  }
],

Next add dysey/apysey in the require section of your composer.json file

composer.json
"require": {
    "php": "^7.3",
	  "fideloper/proxy": "^4.2",
	  "laravel/framework": "^8.0",
	  "dysey/apysey": "*"
},

Then, run the composer update command in the terminal of your project.

Finally, run the apysey:install command to install the configuration files in your application and migrate your database. Moreover, if no user is created then an admin user is created with full permissions.

php artisan apysey:install

And now it's time for the configuration!

Last updated