lotriss / recursive-inherit-bundle
Inherit recursive bundle for symfony
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=8.0
- symfony/config: ^5.0
- symfony/dependency-injection: ^5.0
- symfony/http-kernel: ^5.0
Requires (Dev)
- doctrine/persistence: ^2.2
- infection/infection: ^0.25.0
- phpro/grumphp: ^1.4
- phpunit/phpunit: ^9.5
- roave/security-advisories: dev-latest
- sci3ma/symfony-grumphp: ^3.2
- symfony/browser-kit: ^5.0
- symfony/phpunit-bridge: ^5.0
README
Requirements
Name | Version |
---|---|
PHP | >=8.0 |
Symfony | >=5.0 |
Installation
composer require lotriss/recursive-inherit-bundle
Usage
To build nested structure you need structure array where itemId is in array keys and parentId is in value. For root item value is NULL For example:
<?php use Lotriss\RecursiveInherit\Service\StructureDataHandler; $structureMap = [ 'parent_1' => null, //Root element 'child_1' => 'parent_1', // Child that is under parent_1 node 'child_parent_2' => 'parent_1', //Another child that is under parent_1 node 'child_3' => 'child_parent_2', // Child that is under child_parent_2 which is under parent_1 node ]; $structureMapHandler = new StructureDataHandler(); $builtStructure = $structureMapHandler->buildStructure($structureMap);
You can define more than one root element by adding element with NULL value.
$structureMap['parent_2'] = null; $structureMap['child_for_parent_2'] = 'parent_2';
Running tests
To run tests you can use ./run-tests.sh
or docker based environment by running ./run-tests-docker.sh
In build/coverage-html
you can find test coverage for this bundle after test run.