├── .gitignore ├── .travis.yml ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Providers │ └── WooCommerceServiceProvider.php ├── Publishes │ ├── app │ │ └── woocommerce.php │ └── resources │ │ └── views │ │ └── woocommerce │ │ ├── archive-product.blade.php │ │ ├── single-product.blade.php │ │ ├── taxonomy-product-cat.blade.php │ │ └── taxonomy-product-tag.blade.php └── WooCommerce.php └── tests ├── BaseTestCase.php ├── MainTests └── MainTest.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | composer.lock 3 | vendor 4 | .idea -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarteist/sage-woocommerce/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarteist/sage-woocommerce/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarteist/sage-woocommerce/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarteist/sage-woocommerce/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Providers/WooCommerceServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarteist/sage-woocommerce/HEAD/src/Providers/WooCommerceServiceProvider.php -------------------------------------------------------------------------------- /src/Publishes/app/woocommerce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarteist/sage-woocommerce/HEAD/src/Publishes/app/woocommerce.php -------------------------------------------------------------------------------- /src/Publishes/resources/views/woocommerce/archive-product.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarteist/sage-woocommerce/HEAD/src/Publishes/resources/views/woocommerce/archive-product.blade.php -------------------------------------------------------------------------------- /src/Publishes/resources/views/woocommerce/single-product.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarteist/sage-woocommerce/HEAD/src/Publishes/resources/views/woocommerce/single-product.blade.php -------------------------------------------------------------------------------- /src/Publishes/resources/views/woocommerce/taxonomy-product-cat.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarteist/sage-woocommerce/HEAD/src/Publishes/resources/views/woocommerce/taxonomy-product-cat.blade.php -------------------------------------------------------------------------------- /src/Publishes/resources/views/woocommerce/taxonomy-product-tag.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarteist/sage-woocommerce/HEAD/src/Publishes/resources/views/woocommerce/taxonomy-product-tag.blade.php -------------------------------------------------------------------------------- /src/WooCommerce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarteist/sage-woocommerce/HEAD/src/WooCommerce.php -------------------------------------------------------------------------------- /tests/BaseTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarteist/sage-woocommerce/HEAD/tests/BaseTestCase.php -------------------------------------------------------------------------------- /tests/MainTests/MainTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarteist/sage-woocommerce/HEAD/tests/MainTests/MainTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smarteist/sage-woocommerce/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------