├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ └── docs.yml ├── .gitignore ├── README.md ├── composer.json ├── composer.lock ├── docs ├── assets │ └── github-dark-dimmed.css └── index.md ├── mkdocs.yml ├── phpunit.xml.dist ├── src ├── Collection.php └── CollectionTrait.php └── tests ├── ArrayAccessTest.php ├── CountableTest.php ├── InstanceTest.php ├── MetaTest.php ├── NavigationTest.php └── SerializableTest.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/myth-collection/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [lonnieezell] 4 | -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/myth-collection/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/myth-collection/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/myth-collection/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/myth-collection/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/myth-collection/HEAD/composer.lock -------------------------------------------------------------------------------- /docs/assets/github-dark-dimmed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/myth-collection/HEAD/docs/assets/github-dark-dimmed.css -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/myth-collection/HEAD/docs/index.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/myth-collection/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/myth-collection/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/myth-collection/HEAD/src/Collection.php -------------------------------------------------------------------------------- /src/CollectionTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/myth-collection/HEAD/src/CollectionTrait.php -------------------------------------------------------------------------------- /tests/ArrayAccessTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/myth-collection/HEAD/tests/ArrayAccessTest.php -------------------------------------------------------------------------------- /tests/CountableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/myth-collection/HEAD/tests/CountableTest.php -------------------------------------------------------------------------------- /tests/InstanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/myth-collection/HEAD/tests/InstanceTest.php -------------------------------------------------------------------------------- /tests/MetaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/myth-collection/HEAD/tests/MetaTest.php -------------------------------------------------------------------------------- /tests/NavigationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/myth-collection/HEAD/tests/NavigationTest.php -------------------------------------------------------------------------------- /tests/SerializableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/myth-collection/HEAD/tests/SerializableTest.php --------------------------------------------------------------------------------