Download the PHP package juneszh/alight-admin without Composer

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

Alight-Admin

Alight-Admin is a quick admin panel extension based on the Alight framework.

Features

Alight Family

Project Description
Alight Basic framework built-in routing, database, caching, etc.
Alight-Admin A full admin panel extension based on Alight. No front-end coding required.
Alight-Project A template for beginner to easily create web applications by Alight/Alight-Admin.

Requirements

PHP 7.4+

Usage

Alight-Admin can be quickly built using Alight-Project.

Creating Project

Initialize Admin

The following commands will build the runtime environment required by Alight-Admin, such as installing composer package, inserting configuration options, creating database tables, and downloading front-end resources. Please make sure the database has been configured.

Try the CRUD

Suppose we already have a database table: admin_user Name Datatype Default
id SMALLINT AUTO_INCREMENT
account VARCHAR
password VARCHAR
name VARCHAR
email VARCHAR
role_id TINYINT 0
status TINYINT 1
auth_key VARCHAR
create_time TIMESTAMP CURRENT_TIMESTAMP

Now, create a php table function under controller. For example:

File: app/controller/admin/Test.php

Then, we will get the table page as:

(In order to make the code more compact, some settings are omitted, such as: column title, status point, etc.)

Next, we go ahead and create a form function:

Then, we will get the form page as:

The last step, configure routing and side menu:

File: app/config/route/admin.php

File: app/config/admin/menu.php

Finally, the database table user_admin has completed CRUD creation. See API LIST for more information.

Try the Console Charts

Create charts with built-in data.

File: app/config/admin/console.php

Create charts with api data.

File: app/config/admin/console.php

File: app/controller/admin/Test.php

File: app/config/route/admin.php

Finally, we will get the console page as:

API

Credits

License


All versions of alight-admin with dependencies

PHP Build Version
Package Version
Requires php Version >=7.4
juneszh/alight Version *
gregwar/captcha Version ^1.2
symfony/var-exporter Version >=5.4
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 juneszh/alight-admin contains the following files

Loading the files please wait ....