nytris/nytris

Maintainers

Details

github.com/nytris/nytris

Source

Issues

Installs: 2 142

Dependents: 4

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:project

v0.1.4 2023-11-20 07:19 UTC

This package is auto-updated.

Last update: 2024-04-20 08:25:13 UTC


README

Build Status

Bootstrap library for Nytris.

Usage

You won't usually need to install this package directly with Composer, as it will be required by whichever Nytris packages you are using, but if so:

$ composer install nytris/nytris

Configuring platform boot config

nytris.config.php

<?php

declare(strict_types=1);

use Nytris\Boot\BootConfig;
use Nytris\Boot\PlatformConfig;

$bootConfig = new BootConfig(new PlatformConfig(__DIR__ . '/var/cache/nytris/'));

$bootConfig->installPackage(new MyNytrisPackage([...]));

return $bootConfig;