Download the PHP package differentdevelopment/different-core without Composer

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

GitHub last commit

[Dokumentáció](https://github.com/differentdevelopment/Different-Core/blob/main/DOCUMENTATION.md) ## Telepítés Egy teljesen új projekt esetén a telepítéshez a következő parancsokat kell futtatni: > laravel new **PROJEKT-NEVE**
> composer require backpack/crud
> composer require --dev backpack/generators
Adatbázis létrehozása és az `.env`-ben felvenni! > php artisan backpack:install
Fontos: Ha a Different-Core csomagot szeretnéd fejleszteni akkor létre kell hozni egy `packages` nevű mappát a gyökérkönyvtárban, és oda kicheckoutolni a repo-t! > composer require differentdevelopment/Different-Core
Backpack PRO kiegészítő feltelepítése: https://backpackforlaravel.com/products/pro-for-unlimited-projects (Installation rész) > composer require backpack/pro


## Telepítés után A parancsok lefuttatása után állítsuk be az alábbi értékeket a konfigurációs fájlokban: `config\backpack\base.php`
'view_namespace' => 'different-core::',
'default_date_format' => 'YYYY. MMM. D.',
'default_datetime_format' => 'YYYY. MMM. D. HH:mm',
'avatar_type' => 'getProfileImageUrl',
'guard' => null,
'passwords' => null,
'project_name' => '**PROJEKT-NEVE**',
'project_logo' => '**PROJEKT-NEVE**',
'home_link' => '', // Csak admin rendszerek esetén, amúgy 'admin'
'developer_name' => 'Different Fejlesztő Kft.',
'developer_link' => 'https://different.hu',
'show_powered_by' => false,

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

`config\base.php`
'middleware_class' => [ ... \Different\DifferentCore\app\Http\Middlewares\SetLangMiddleware::class, ] `config/backpack/crud.php`
Itt a locales-t kitölteni, melyek a választható nyelvek. `config\auth.php`
'model' => Different\DifferentCore\app\Models\User::class,

`database\seeders\DatabaseSeeder.php`

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

**Ne felejtsd el az `.env` fájl helyes kitöltését!** Ha ez megvolt akkor már csak az alábbi pár parancsot kell lefuttatni: > php artisan migrate --seed
> php artisan vendor:publish --tag=config


## Opcionális csomagok / kiegészítések
### Módosított Backpack design
> php artisan vendor:publish --tag=scss --force Módosítsd a színeket a `backpack-overrides.scss` fájlban a `:root {` selectorban. Színek generálásához érdemes ezt használni: https://ionicframework.com/docs/theming/color-generator Új elemet felvenni a `vite.config.js` fájlban a laravel -> input tömbhöz:
> 'resources/scss/backpack-overrides.scss' Az új elemet felvenni a `config/backpack/base.php -> vite_styles` tömbhöz:
'resources/scss/backpack-overrides.scss',
> `yarn` majd `yarn dev` futtatása.
### Rendszer szintű logolás
Nyisd meg a `app\Exceptions\Handler.php` fájlt és módosítsd a `register` metódust erre:
### Larastan
A csomag előre telepítve van viszont rendszerenként a `phpstan.neon` config fájlt létre kell hozni.
https://packagist.org/packages/nunomaduro/larastan#1.0.3
Később futtatni a `./vendor/bin/phpstan analyse` vagy automatizálni.


## Demo projekt
https://github.com/differentdevelopment/Different-Core-Demo-Project

All versions of different-core with dependencies

PHP Build Version
Package Version
Requires php Version ^8.0
backpack/permissionmanager Version ^6.0
illuminate/support Version ^9.18
intervention/image Version ^2.7
spatie/laravel-activitylog Version ^4.2
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 differentdevelopment/different-core contains the following files

Loading the files please wait ....