├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── AutoTreeTrait.php ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml.dist └── tests ├── .gitignore ├── AlMpTest.php ├── AlNiTest.php ├── AlNsTest.php ├── ArrayDataSet.php ├── AutoTreeTraitTestCase.php ├── BaseTestCase.php ├── README.md ├── bootstrap.php ├── data ├── config.php ├── data-ni.php └── data.php ├── migrations └── TestMigration.php └── models ├── NodeAlMp.php ├── NodeAlNi.php ├── NodeAlNs.php └── NodeQuery.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzi/yii2-auto-tree/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzi/yii2-auto-tree/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzi/yii2-auto-tree/HEAD/.travis.yml -------------------------------------------------------------------------------- /AutoTreeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzi/yii2-auto-tree/HEAD/AutoTreeTrait.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzi/yii2-auto-tree/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzi/yii2-auto-tree/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzi/yii2-auto-tree/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzi/yii2-auto-tree/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzi/yii2-auto-tree/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | /data/config.local.php -------------------------------------------------------------------------------- /tests/AlMpTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzi/yii2-auto-tree/HEAD/tests/AlMpTest.php -------------------------------------------------------------------------------- /tests/AlNiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzi/yii2-auto-tree/HEAD/tests/AlNiTest.php -------------------------------------------------------------------------------- /tests/AlNsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzi/yii2-auto-tree/HEAD/tests/AlNsTest.php -------------------------------------------------------------------------------- /tests/ArrayDataSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzi/yii2-auto-tree/HEAD/tests/ArrayDataSet.php -------------------------------------------------------------------------------- /tests/AutoTreeTraitTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzi/yii2-auto-tree/HEAD/tests/AutoTreeTraitTestCase.php -------------------------------------------------------------------------------- /tests/BaseTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzi/yii2-auto-tree/HEAD/tests/BaseTestCase.php -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzi/yii2-auto-tree/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzi/yii2-auto-tree/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/data/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzi/yii2-auto-tree/HEAD/tests/data/config.php -------------------------------------------------------------------------------- /tests/data/data-ni.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzi/yii2-auto-tree/HEAD/tests/data/data-ni.php -------------------------------------------------------------------------------- /tests/data/data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzi/yii2-auto-tree/HEAD/tests/data/data.php -------------------------------------------------------------------------------- /tests/migrations/TestMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzi/yii2-auto-tree/HEAD/tests/migrations/TestMigration.php -------------------------------------------------------------------------------- /tests/models/NodeAlMp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzi/yii2-auto-tree/HEAD/tests/models/NodeAlMp.php -------------------------------------------------------------------------------- /tests/models/NodeAlNi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzi/yii2-auto-tree/HEAD/tests/models/NodeAlNi.php -------------------------------------------------------------------------------- /tests/models/NodeAlNs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzi/yii2-auto-tree/HEAD/tests/models/NodeAlNs.php -------------------------------------------------------------------------------- /tests/models/NodeQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzi/yii2-auto-tree/HEAD/tests/models/NodeQuery.php --------------------------------------------------------------------------------