Download the PHP package madtechservices/madmin-core without Composer

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

GitHub last commit

[Documentation](https://github.com/madtechservices/madmin-core/blob/main/DOCUMENTATION.md) ## Installation For a completely new project, the following commands should be run for installation: > laravel new **PROJECT-NAME**
> composer require backpack/crud
> composer require --dev backpack/generators
Create a database and add it in the `.env` file! > php artisan backpack:install
Important: If you want to develop the madmin-core package, you need to create a `packages` folder in the root directory, and checkout the repo there! > composer require madtechservices/madmin-core
Install Backpack PRO extension: https://backpackforlaravel.com/products/pro-for-unlimited-projects (Installation section) > composer require backpack/pro


## After Installation After running the commands, set the following values in the configuration files: `config\backpack\base.php`
'view_namespace' => 'madmin-core::',
'default_date_format' => 'YYYY. MMM. D.',
'default_datetime_format' => 'YYYY. MMM. D. HH:mm',
'avatar_type' => 'getProfileImageUrl',
'guard' => null,
'passwords' => null,
'project_name' => '**PROJECT-NAME**',
'project_logo' => '**PROJECT-NAME**',
'home_link' => '', // Only for admin systems, otherwise 'admin'
'developer_name' => 'MAD Tech Services',
'developer_link' => 'https://madtechservices.com.au',
'show_powered_by' => false,

`config\app.php`
'timezone' => 'Europe/Budapest',
'locale' => 'hu',

`config\base.php`
'middleware_class' => [ ... \Madtechservices\MadminCore\app\Http\Middlewares\SetLangMiddleware::class, ] `config/backpack/crud.php`
Fill in the locales here, which are the selectable languages. `config\auth.php`
'model' => Madtechservices\MadminCore\app\Models\User::class,

`database\seeders\DatabaseSeeder.php`

`app\Providers\RouteServiceProvider.php`
public const HOME = '/';

**Don't forget to fill in the `.env` file correctly!** After this, you just need to run the following few commands: > php artisan migrate --seed
> php artisan vendor:publish --tag=config


## Optional packages / extensions ### Modified Backpack design > php artisan vendor:publish --tag=scss --force Modify the colors in the `backpack-overrides.scss` file in the `:root {` selector. To generate colors, it's worth using this: https://ionicframework.com/docs/theming/color-generator Add a new element to the `vite.config.js` file in the laravel -> input array:
> 'resources/scss/backpack-overrides.scss' Add the new element to the `config/backpack/base.php -> vite_styles` array:
'resources/scss/backpack-overrides.scss',
> `yarn` then run `yarn dev`.
### System level logging Open the `app\Exceptions\Handler.php` file and modify the `register` method to this:
### Larastan The package is pre-installed but for each system, the `phpstan.neon` config file needs to be created.
https://packagist.org/packages/nunomaduro/larastan#1.0.3
Later, run `./vendor/bin/phpstan analyse` or automate it.

All versions of madmin-core with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
backpack/permissionmanager Version ^6.0
illuminate/support Version ^10.13.0
intervention/image Version ^2.7
spatie/laravel-activitylog Version ^4.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 madtechservices/madmin-core contains the following files

Loading the files please wait ....