├── LICENSE ├── Model ├── Checks │ └── CanUseForCustomerGroup.php └── Customer │ └── Source │ └── Group.php ├── README.md ├── Test └── Unit │ ├── Customer │ └── Source │ │ └── GroupTest.php │ └── Model │ └── Checks │ └── CanUseForCustomerGroupTest.php ├── composer.json ├── etc ├── adminhtml │ └── system │ │ └── customer_groups.xml ├── di.xml └── module.xml ├── phpunit.xml └── registration.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensscherbl/customer-group-payments/HEAD/LICENSE -------------------------------------------------------------------------------- /Model/Checks/CanUseForCustomerGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensscherbl/customer-group-payments/HEAD/Model/Checks/CanUseForCustomerGroup.php -------------------------------------------------------------------------------- /Model/Customer/Source/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensscherbl/customer-group-payments/HEAD/Model/Customer/Source/Group.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensscherbl/customer-group-payments/HEAD/README.md -------------------------------------------------------------------------------- /Test/Unit/Customer/Source/GroupTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensscherbl/customer-group-payments/HEAD/Test/Unit/Customer/Source/GroupTest.php -------------------------------------------------------------------------------- /Test/Unit/Model/Checks/CanUseForCustomerGroupTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensscherbl/customer-group-payments/HEAD/Test/Unit/Model/Checks/CanUseForCustomerGroupTest.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensscherbl/customer-group-payments/HEAD/composer.json -------------------------------------------------------------------------------- /etc/adminhtml/system/customer_groups.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensscherbl/customer-group-payments/HEAD/etc/adminhtml/system/customer_groups.xml -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensscherbl/customer-group-payments/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensscherbl/customer-group-payments/HEAD/etc/module.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensscherbl/customer-group-payments/HEAD/phpunit.xml -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jensscherbl/customer-group-payments/HEAD/registration.php --------------------------------------------------------------------------------