├── .gitignore ├── .php-cs-fixer.cache ├── .travis.yml ├── CHANGELOG.md ├── LICENCE ├── README.md ├── UPGRADE-7.0.md ├── bin └── dev │ ├── check_code.sh │ └── fix_code.sh ├── composer.json ├── composer.lock ├── examples └── expression_builder.php ├── grumphp.yml ├── phpstan.neon ├── phpunit.xml.dist ├── src ├── Client.php ├── DBAL │ ├── Expression │ │ ├── CollectionOperation.php │ │ ├── Comparison.php │ │ ├── CompositeDomain.php │ │ ├── ConversionException.php │ │ ├── CustomDomain.php │ │ ├── DomainInterface.php │ │ ├── ExpressionBuilder.php │ │ └── ExpressionBuilderAwareTrait.php │ ├── Query │ │ ├── AbstractQuery.php │ │ ├── NativeQuery.php │ │ ├── NoResultException.php │ │ ├── NoUniqueResultException.php │ │ ├── OrmQuery.php │ │ ├── QueryBuilder.php │ │ ├── QueryException.php │ │ └── QueryInterface.php │ ├── RecordManager.php │ ├── Repository │ │ ├── RecordNotFoundException.php │ │ └── RecordRepository.php │ └── Schema │ │ ├── Choice.php │ │ ├── Field.php │ │ ├── Model.php │ │ ├── Schema.php │ │ ├── SchemaException.php │ │ └── Selection.php ├── Endpoint.php └── Exception │ ├── AuthenticationException.php │ ├── ExceptionInterface.php │ ├── MissingConfigParameterException.php │ ├── RemoteException.php │ └── RequestException.php ├── tests.phpstan.neon └── tests ├── AbstractTest.php ├── Expression ├── AbstractDomainTest.php ├── ComparisonTest.php └── CompositeDomainTest.php └── Utils ├── Debugger.php ├── ObjectTester.php ├── Reflector.php └── TestDecorator.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/.php-cs-fixer.cache -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADE-7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/UPGRADE-7.0.md -------------------------------------------------------------------------------- /bin/dev/check_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/bin/dev/check_code.sh -------------------------------------------------------------------------------- /bin/dev/fix_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/bin/dev/fix_code.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/composer.lock -------------------------------------------------------------------------------- /examples/expression_builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/examples/expression_builder.php -------------------------------------------------------------------------------- /grumphp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/grumphp.yml -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/Client.php -------------------------------------------------------------------------------- /src/DBAL/Expression/CollectionOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/DBAL/Expression/CollectionOperation.php -------------------------------------------------------------------------------- /src/DBAL/Expression/Comparison.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/DBAL/Expression/Comparison.php -------------------------------------------------------------------------------- /src/DBAL/Expression/CompositeDomain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/DBAL/Expression/CompositeDomain.php -------------------------------------------------------------------------------- /src/DBAL/Expression/ConversionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/DBAL/Expression/ConversionException.php -------------------------------------------------------------------------------- /src/DBAL/Expression/CustomDomain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/DBAL/Expression/CustomDomain.php -------------------------------------------------------------------------------- /src/DBAL/Expression/DomainInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/DBAL/Expression/DomainInterface.php -------------------------------------------------------------------------------- /src/DBAL/Expression/ExpressionBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/DBAL/Expression/ExpressionBuilder.php -------------------------------------------------------------------------------- /src/DBAL/Expression/ExpressionBuilderAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/DBAL/Expression/ExpressionBuilderAwareTrait.php -------------------------------------------------------------------------------- /src/DBAL/Query/AbstractQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/DBAL/Query/AbstractQuery.php -------------------------------------------------------------------------------- /src/DBAL/Query/NativeQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/DBAL/Query/NativeQuery.php -------------------------------------------------------------------------------- /src/DBAL/Query/NoResultException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/DBAL/Query/NoResultException.php -------------------------------------------------------------------------------- /src/DBAL/Query/NoUniqueResultException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/DBAL/Query/NoUniqueResultException.php -------------------------------------------------------------------------------- /src/DBAL/Query/OrmQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/DBAL/Query/OrmQuery.php -------------------------------------------------------------------------------- /src/DBAL/Query/QueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/DBAL/Query/QueryBuilder.php -------------------------------------------------------------------------------- /src/DBAL/Query/QueryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/DBAL/Query/QueryException.php -------------------------------------------------------------------------------- /src/DBAL/Query/QueryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/DBAL/Query/QueryInterface.php -------------------------------------------------------------------------------- /src/DBAL/RecordManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/DBAL/RecordManager.php -------------------------------------------------------------------------------- /src/DBAL/Repository/RecordNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/DBAL/Repository/RecordNotFoundException.php -------------------------------------------------------------------------------- /src/DBAL/Repository/RecordRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/DBAL/Repository/RecordRepository.php -------------------------------------------------------------------------------- /src/DBAL/Schema/Choice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/DBAL/Schema/Choice.php -------------------------------------------------------------------------------- /src/DBAL/Schema/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/DBAL/Schema/Field.php -------------------------------------------------------------------------------- /src/DBAL/Schema/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/DBAL/Schema/Model.php -------------------------------------------------------------------------------- /src/DBAL/Schema/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/DBAL/Schema/Schema.php -------------------------------------------------------------------------------- /src/DBAL/Schema/SchemaException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/DBAL/Schema/SchemaException.php -------------------------------------------------------------------------------- /src/DBAL/Schema/Selection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/DBAL/Schema/Selection.php -------------------------------------------------------------------------------- /src/Endpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/Endpoint.php -------------------------------------------------------------------------------- /src/Exception/AuthenticationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/Exception/AuthenticationException.php -------------------------------------------------------------------------------- /src/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/Exception/MissingConfigParameterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/Exception/MissingConfigParameterException.php -------------------------------------------------------------------------------- /src/Exception/RemoteException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/Exception/RemoteException.php -------------------------------------------------------------------------------- /src/Exception/RequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/src/Exception/RequestException.php -------------------------------------------------------------------------------- /tests.phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/tests.phpstan.neon -------------------------------------------------------------------------------- /tests/AbstractTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/tests/AbstractTest.php -------------------------------------------------------------------------------- /tests/Expression/AbstractDomainTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/tests/Expression/AbstractDomainTest.php -------------------------------------------------------------------------------- /tests/Expression/ComparisonTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/tests/Expression/ComparisonTest.php -------------------------------------------------------------------------------- /tests/Expression/CompositeDomainTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/tests/Expression/CompositeDomainTest.php -------------------------------------------------------------------------------- /tests/Utils/Debugger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/tests/Utils/Debugger.php -------------------------------------------------------------------------------- /tests/Utils/ObjectTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/tests/Utils/ObjectTester.php -------------------------------------------------------------------------------- /tests/Utils/Reflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/tests/Utils/Reflector.php -------------------------------------------------------------------------------- /tests/Utils/TestDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ang3/php-odoo-api-client/HEAD/tests/Utils/TestDecorator.php --------------------------------------------------------------------------------