├── .github └── workflows │ ├── coverage.yml │ └── tests.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── phpcs.xml ├── phpunit.xml.dist ├── src ├── Api.php ├── Change.php ├── Converter.php ├── Exception.php ├── Mapper.php ├── Middleware.php ├── Migration.php ├── Pool.php └── Space.php └── tests ├── MapperTest.php ├── Middleware.php ├── TypedConstructor.php └── TypedProperties.php /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarantool-php/mapper/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarantool-php/mapper/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarantool-php/mapper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarantool-php/mapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarantool-php/mapper/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarantool-php/mapper/HEAD/composer.json -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarantool-php/mapper/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarantool-php/mapper/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarantool-php/mapper/HEAD/src/Api.php -------------------------------------------------------------------------------- /src/Change.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarantool-php/mapper/HEAD/src/Change.php -------------------------------------------------------------------------------- /src/Converter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarantool-php/mapper/HEAD/src/Converter.php -------------------------------------------------------------------------------- /src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarantool-php/mapper/HEAD/src/Exception.php -------------------------------------------------------------------------------- /src/Mapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarantool-php/mapper/HEAD/src/Mapper.php -------------------------------------------------------------------------------- /src/Middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarantool-php/mapper/HEAD/src/Middleware.php -------------------------------------------------------------------------------- /src/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarantool-php/mapper/HEAD/src/Migration.php -------------------------------------------------------------------------------- /src/Pool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarantool-php/mapper/HEAD/src/Pool.php -------------------------------------------------------------------------------- /src/Space.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarantool-php/mapper/HEAD/src/Space.php -------------------------------------------------------------------------------- /tests/MapperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarantool-php/mapper/HEAD/tests/MapperTest.php -------------------------------------------------------------------------------- /tests/Middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarantool-php/mapper/HEAD/tests/Middleware.php -------------------------------------------------------------------------------- /tests/TypedConstructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarantool-php/mapper/HEAD/tests/TypedConstructor.php -------------------------------------------------------------------------------- /tests/TypedProperties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarantool-php/mapper/HEAD/tests/TypedProperties.php --------------------------------------------------------------------------------