├── .gitignore ├── .travis.yml ├── README.md ├── admin └── admin.php ├── bin └── install-wp-tests.sh ├── composer.json ├── composer.lock ├── loader.php ├── objects-to-objects.php ├── phpcs.ruleset.xml ├── phpunit.xml ├── src ├── cli │ └── o2o.php ├── connection-types │ └── taxonomy │ │ ├── query_modifier.php │ │ └── taxonomy.php ├── factory.php ├── o2o.php ├── query.php └── rewrites.php └── tests ├── bootstrap.php ├── connection-types └── taxonomy │ └── test-O2O_Connection_Taxonomy.php ├── mock-connection.php ├── mock-query-modifier.php ├── test-O2O_Connection_Factory.php ├── test-O2O_Functional.php ├── test-O2O_Query.php └── test-O2O_Rewrites.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/README.md -------------------------------------------------------------------------------- /admin/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/admin/admin.php -------------------------------------------------------------------------------- /bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/composer.lock -------------------------------------------------------------------------------- /loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/loader.php -------------------------------------------------------------------------------- /objects-to-objects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/objects-to-objects.php -------------------------------------------------------------------------------- /phpcs.ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/phpcs.ruleset.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/cli/o2o.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/src/cli/o2o.php -------------------------------------------------------------------------------- /src/connection-types/taxonomy/query_modifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/src/connection-types/taxonomy/query_modifier.php -------------------------------------------------------------------------------- /src/connection-types/taxonomy/taxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/src/connection-types/taxonomy/taxonomy.php -------------------------------------------------------------------------------- /src/factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/src/factory.php -------------------------------------------------------------------------------- /src/o2o.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/src/o2o.php -------------------------------------------------------------------------------- /src/query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/src/query.php -------------------------------------------------------------------------------- /src/rewrites.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/src/rewrites.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/connection-types/taxonomy/test-O2O_Connection_Taxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/tests/connection-types/taxonomy/test-O2O_Connection_Taxonomy.php -------------------------------------------------------------------------------- /tests/mock-connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/tests/mock-connection.php -------------------------------------------------------------------------------- /tests/mock-query-modifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/tests/mock-query-modifier.php -------------------------------------------------------------------------------- /tests/test-O2O_Connection_Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/tests/test-O2O_Connection_Factory.php -------------------------------------------------------------------------------- /tests/test-O2O_Functional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/tests/test-O2O_Functional.php -------------------------------------------------------------------------------- /tests/test-O2O_Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/tests/test-O2O_Query.php -------------------------------------------------------------------------------- /tests/test-O2O_Rewrites.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/objects-to-objects/HEAD/tests/test-O2O_Rewrites.php --------------------------------------------------------------------------------