├── .travis.yml ├── .travis ├── before_script.sh └── travis-ci-apache ├── Helper └── Data.php ├── License.md ├── Plugin └── UidPlugin.php ├── README.md ├── Test └── Unit │ └── Plugin │ └── UidTest.php ├── composer.json ├── etc ├── di.xml └── module.xml ├── i18n ├── de_DE.csv └── en_US.csv └── registration.php /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopeX/CopeX_VatFix/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis/before_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopeX/CopeX_VatFix/HEAD/.travis/before_script.sh -------------------------------------------------------------------------------- /.travis/travis-ci-apache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopeX/CopeX_VatFix/HEAD/.travis/travis-ci-apache -------------------------------------------------------------------------------- /Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopeX/CopeX_VatFix/HEAD/Helper/Data.php -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopeX/CopeX_VatFix/HEAD/License.md -------------------------------------------------------------------------------- /Plugin/UidPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopeX/CopeX_VatFix/HEAD/Plugin/UidPlugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopeX/CopeX_VatFix/HEAD/README.md -------------------------------------------------------------------------------- /Test/Unit/Plugin/UidTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopeX/CopeX_VatFix/HEAD/Test/Unit/Plugin/UidTest.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopeX/CopeX_VatFix/HEAD/composer.json -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopeX/CopeX_VatFix/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopeX/CopeX_VatFix/HEAD/etc/module.xml -------------------------------------------------------------------------------- /i18n/de_DE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopeX/CopeX_VatFix/HEAD/i18n/de_DE.csv -------------------------------------------------------------------------------- /i18n/en_US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopeX/CopeX_VatFix/HEAD/i18n/en_US.csv -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CopeX/CopeX_VatFix/HEAD/registration.php --------------------------------------------------------------------------------