Download the PHP package exeplor/ampere without Composer

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

Ampere

Ampere is a simple and flexible admin panel for Laravel framework.

Sections

  1. Installation
  2. Configuration
  3. Routing
  4. Menu
  5. Controller
  6. ACL
  7. Views
  8. Grid
  9. Forms

Installation

Install package

Add service provider to app.php

Create new ampere space and follow the instructions

Run migrations after first install

Configuration

Routing

Ampere have dynamic route generation. All routes are built automatically depending on the name of the controller and parent folder. Also you can customize route using controller and method annotations.

Now you can get any route by specific controller method

Menu

Menu will be generated automatically. You can modify your menu in menu config file:

Use annotations in controller methods for creating menu items.

Controller

In most cases you will need to create CRUD controller. Ampere has special command to automate this task.

Any CRUD controller have model. Ampere analyzes the table structure and model structure, creating validation and relationships based on this data. Also this method generate view.

ACL

From the box you have full ACL for all routes, menu items in all controllers with their method. You can manage roles and permissions from the controller which created on installation.

Views

For render view in Ampere space you need to call render() function in you controller.

View example

You can create new Ampere page using command:

And your page will be created in /resources/views//pages/mypage.blade.php

Grid

It's a default Ampere library for data search. Basic exmaple:

Also you can use relation values to display and search.

Render your grid in view

Column description

Add actions to your grid

Forms

Build form with basic fields:

All components works with validation errors. You can use your own components without builder.


All versions of ampere with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4
laravel/framework Version ^7.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 exeplor/ampere contains the following files

Loading the files please wait ....