├── Dockerfile ├── README.md ├── docker-compose.yml └── src ├── index.php └── services ├── frete.php └── shipping ├── correios.php ├── dhl.php ├── fedex.php ├── jadlog.php ├── mercadoenvio.php └── tnt.php /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM php:7.2-apache 2 | COPY ./src/ /var/www/html/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfroes/design-pattern-strategy-na-pratica/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfroes/design-pattern-strategy-na-pratica/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /src/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfroes/design-pattern-strategy-na-pratica/HEAD/src/index.php -------------------------------------------------------------------------------- /src/services/frete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfroes/design-pattern-strategy-na-pratica/HEAD/src/services/frete.php -------------------------------------------------------------------------------- /src/services/shipping/correios.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfroes/design-pattern-strategy-na-pratica/HEAD/src/services/shipping/correios.php -------------------------------------------------------------------------------- /src/services/shipping/dhl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfroes/design-pattern-strategy-na-pratica/HEAD/src/services/shipping/dhl.php -------------------------------------------------------------------------------- /src/services/shipping/fedex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfroes/design-pattern-strategy-na-pratica/HEAD/src/services/shipping/fedex.php -------------------------------------------------------------------------------- /src/services/shipping/jadlog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfroes/design-pattern-strategy-na-pratica/HEAD/src/services/shipping/jadlog.php -------------------------------------------------------------------------------- /src/services/shipping/mercadoenvio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfroes/design-pattern-strategy-na-pratica/HEAD/src/services/shipping/mercadoenvio.php -------------------------------------------------------------------------------- /src/services/shipping/tnt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielfroes/design-pattern-strategy-na-pratica/HEAD/src/services/shipping/tnt.php --------------------------------------------------------------------------------