├── .env-example ├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── README.md ├── composer.json ├── examples ├── example1.php └── example2.php ├── phpunit.xml ├── src ├── Event.php ├── Interfaces │ ├── EventInterface.php │ ├── OAuth2Interface.php │ └── ShipmentInterface.php ├── OAuth2.php └── Shipment.php └── tests ├── Support └── TestingShipment.php ├── TestCase.php └── Unit ├── EventTest.php ├── OAuth2Test.php └── ShipmentTest.php /.env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melhorenvio/melhor-envio-sdk-php/HEAD/.env-example -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melhorenvio/melhor-envio-sdk-php/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melhorenvio/melhor-envio-sdk-php/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melhorenvio/melhor-envio-sdk-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melhorenvio/melhor-envio-sdk-php/HEAD/composer.json -------------------------------------------------------------------------------- /examples/example1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melhorenvio/melhor-envio-sdk-php/HEAD/examples/example1.php -------------------------------------------------------------------------------- /examples/example2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melhorenvio/melhor-envio-sdk-php/HEAD/examples/example2.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melhorenvio/melhor-envio-sdk-php/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melhorenvio/melhor-envio-sdk-php/HEAD/src/Event.php -------------------------------------------------------------------------------- /src/Interfaces/EventInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melhorenvio/melhor-envio-sdk-php/HEAD/src/Interfaces/EventInterface.php -------------------------------------------------------------------------------- /src/Interfaces/OAuth2Interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melhorenvio/melhor-envio-sdk-php/HEAD/src/Interfaces/OAuth2Interface.php -------------------------------------------------------------------------------- /src/Interfaces/ShipmentInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melhorenvio/melhor-envio-sdk-php/HEAD/src/Interfaces/ShipmentInterface.php -------------------------------------------------------------------------------- /src/OAuth2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melhorenvio/melhor-envio-sdk-php/HEAD/src/OAuth2.php -------------------------------------------------------------------------------- /src/Shipment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melhorenvio/melhor-envio-sdk-php/HEAD/src/Shipment.php -------------------------------------------------------------------------------- /tests/Support/TestingShipment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melhorenvio/melhor-envio-sdk-php/HEAD/tests/Support/TestingShipment.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melhorenvio/melhor-envio-sdk-php/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/EventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melhorenvio/melhor-envio-sdk-php/HEAD/tests/Unit/EventTest.php -------------------------------------------------------------------------------- /tests/Unit/OAuth2Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melhorenvio/melhor-envio-sdk-php/HEAD/tests/Unit/OAuth2Test.php -------------------------------------------------------------------------------- /tests/Unit/ShipmentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melhorenvio/melhor-envio-sdk-php/HEAD/tests/Unit/ShipmentTest.php --------------------------------------------------------------------------------