nytris/nytris

Maintainers

Package info

github.com/nytris/nytris

Type:project

pkg:composer/nytris/nytris

Statistics

Installs: 13 839

Dependents: 10

Suggesters: 0

Stars: 1

Open Issues: 0

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

This package is auto-updated.

Last update: 2026-03-09 23:20:03 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 require 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;