├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── config └── mshop │ └── customer.php ├── manifest.php ├── phing.xml ├── setup ├── CustomerClearPropertyKeyLaravel.php ├── CustomerMigratePropertyKeyLaravel.php ├── CustomerMigrateTableInnoDB.php ├── CustomerRemoveConstraints.php ├── CustomerRemoveIndexesLaravel.php ├── CustomerRenameGroupLaravel.php ├── default │ └── schema │ │ └── customer.php └── unittest │ └── CustomerAddLaravelTestData.php ├── src ├── Base │ ├── Cache │ │ └── Laravel.php │ ├── Filesystem │ │ ├── Laravel.php │ │ └── Manager │ │ │ └── Laravel.php │ ├── Mail │ │ ├── Laravel.php │ │ ├── Manager │ │ │ └── Laravel.php │ │ └── Message │ │ │ └── Laravel.php │ ├── Session │ │ └── Laravel.php │ └── View │ │ ├── Engine │ │ └── Blade.php │ │ └── Helper │ │ ├── Request │ │ └── Laravel.php │ │ ├── Response │ │ └── Laravel.php │ │ └── Url │ │ └── Laravel.php └── MShop │ └── Customer │ └── Manager │ ├── Address │ └── Laravel.php │ ├── Laravel.php │ ├── Lists │ ├── Laravel.php │ └── Type │ │ └── Laravel.php │ └── Property │ ├── Laravel.php │ └── Type │ └── Laravel.php └── tests ├── Base ├── Cache │ └── LaravelTest.php ├── Filesystem │ ├── LaravelTest.php │ └── Manager │ │ └── LaravelTest.php ├── Mail │ ├── LaravelTest.php │ ├── Manager │ │ └── LaravelTest.php │ └── Message │ │ └── LaravelTest.php ├── Session │ └── LaravelTest.php └── View │ ├── Engine │ └── BladeTest.php │ └── Helper │ ├── Request │ └── LaravelTest.php │ ├── Response │ └── LaravelTest.php │ └── Url │ └── LaravelTest.php ├── MShop └── Customer │ └── Manager │ ├── Address │ └── LaravelTest.php │ ├── LaravelTest.php │ ├── Lists │ ├── LaravelTest.php │ └── Type │ │ └── LaravelTest.php │ └── Property │ ├── LaravelTest.php │ └── Type │ └── LaravelTest.php ├── TestHelper.php ├── bootstrap.php ├── phpunit-coverage.xml └── phpunit.xml /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/composer.json -------------------------------------------------------------------------------- /config/mshop/customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/config/mshop/customer.php -------------------------------------------------------------------------------- /manifest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/manifest.php -------------------------------------------------------------------------------- /phing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/phing.xml -------------------------------------------------------------------------------- /setup/CustomerClearPropertyKeyLaravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/setup/CustomerClearPropertyKeyLaravel.php -------------------------------------------------------------------------------- /setup/CustomerMigratePropertyKeyLaravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/setup/CustomerMigratePropertyKeyLaravel.php -------------------------------------------------------------------------------- /setup/CustomerMigrateTableInnoDB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/setup/CustomerMigrateTableInnoDB.php -------------------------------------------------------------------------------- /setup/CustomerRemoveConstraints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/setup/CustomerRemoveConstraints.php -------------------------------------------------------------------------------- /setup/CustomerRemoveIndexesLaravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/setup/CustomerRemoveIndexesLaravel.php -------------------------------------------------------------------------------- /setup/CustomerRenameGroupLaravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/setup/CustomerRenameGroupLaravel.php -------------------------------------------------------------------------------- /setup/default/schema/customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/setup/default/schema/customer.php -------------------------------------------------------------------------------- /setup/unittest/CustomerAddLaravelTestData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/setup/unittest/CustomerAddLaravelTestData.php -------------------------------------------------------------------------------- /src/Base/Cache/Laravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/src/Base/Cache/Laravel.php -------------------------------------------------------------------------------- /src/Base/Filesystem/Laravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/src/Base/Filesystem/Laravel.php -------------------------------------------------------------------------------- /src/Base/Filesystem/Manager/Laravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/src/Base/Filesystem/Manager/Laravel.php -------------------------------------------------------------------------------- /src/Base/Mail/Laravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/src/Base/Mail/Laravel.php -------------------------------------------------------------------------------- /src/Base/Mail/Manager/Laravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/src/Base/Mail/Manager/Laravel.php -------------------------------------------------------------------------------- /src/Base/Mail/Message/Laravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/src/Base/Mail/Message/Laravel.php -------------------------------------------------------------------------------- /src/Base/Session/Laravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/src/Base/Session/Laravel.php -------------------------------------------------------------------------------- /src/Base/View/Engine/Blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/src/Base/View/Engine/Blade.php -------------------------------------------------------------------------------- /src/Base/View/Helper/Request/Laravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/src/Base/View/Helper/Request/Laravel.php -------------------------------------------------------------------------------- /src/Base/View/Helper/Response/Laravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/src/Base/View/Helper/Response/Laravel.php -------------------------------------------------------------------------------- /src/Base/View/Helper/Url/Laravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/src/Base/View/Helper/Url/Laravel.php -------------------------------------------------------------------------------- /src/MShop/Customer/Manager/Address/Laravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/src/MShop/Customer/Manager/Address/Laravel.php -------------------------------------------------------------------------------- /src/MShop/Customer/Manager/Laravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/src/MShop/Customer/Manager/Laravel.php -------------------------------------------------------------------------------- /src/MShop/Customer/Manager/Lists/Laravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/src/MShop/Customer/Manager/Lists/Laravel.php -------------------------------------------------------------------------------- /src/MShop/Customer/Manager/Lists/Type/Laravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/src/MShop/Customer/Manager/Lists/Type/Laravel.php -------------------------------------------------------------------------------- /src/MShop/Customer/Manager/Property/Laravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/src/MShop/Customer/Manager/Property/Laravel.php -------------------------------------------------------------------------------- /src/MShop/Customer/Manager/Property/Type/Laravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/src/MShop/Customer/Manager/Property/Type/Laravel.php -------------------------------------------------------------------------------- /tests/Base/Cache/LaravelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/tests/Base/Cache/LaravelTest.php -------------------------------------------------------------------------------- /tests/Base/Filesystem/LaravelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/tests/Base/Filesystem/LaravelTest.php -------------------------------------------------------------------------------- /tests/Base/Filesystem/Manager/LaravelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/tests/Base/Filesystem/Manager/LaravelTest.php -------------------------------------------------------------------------------- /tests/Base/Mail/LaravelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/tests/Base/Mail/LaravelTest.php -------------------------------------------------------------------------------- /tests/Base/Mail/Manager/LaravelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/tests/Base/Mail/Manager/LaravelTest.php -------------------------------------------------------------------------------- /tests/Base/Mail/Message/LaravelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/tests/Base/Mail/Message/LaravelTest.php -------------------------------------------------------------------------------- /tests/Base/Session/LaravelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/tests/Base/Session/LaravelTest.php -------------------------------------------------------------------------------- /tests/Base/View/Engine/BladeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/tests/Base/View/Engine/BladeTest.php -------------------------------------------------------------------------------- /tests/Base/View/Helper/Request/LaravelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/tests/Base/View/Helper/Request/LaravelTest.php -------------------------------------------------------------------------------- /tests/Base/View/Helper/Response/LaravelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/tests/Base/View/Helper/Response/LaravelTest.php -------------------------------------------------------------------------------- /tests/Base/View/Helper/Url/LaravelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/tests/Base/View/Helper/Url/LaravelTest.php -------------------------------------------------------------------------------- /tests/MShop/Customer/Manager/Address/LaravelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/tests/MShop/Customer/Manager/Address/LaravelTest.php -------------------------------------------------------------------------------- /tests/MShop/Customer/Manager/LaravelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/tests/MShop/Customer/Manager/LaravelTest.php -------------------------------------------------------------------------------- /tests/MShop/Customer/Manager/Lists/LaravelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/tests/MShop/Customer/Manager/Lists/LaravelTest.php -------------------------------------------------------------------------------- /tests/MShop/Customer/Manager/Lists/Type/LaravelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/tests/MShop/Customer/Manager/Lists/Type/LaravelTest.php -------------------------------------------------------------------------------- /tests/MShop/Customer/Manager/Property/LaravelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/tests/MShop/Customer/Manager/Property/LaravelTest.php -------------------------------------------------------------------------------- /tests/MShop/Customer/Manager/Property/Type/LaravelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/tests/MShop/Customer/Manager/Property/Type/LaravelTest.php -------------------------------------------------------------------------------- /tests/TestHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/tests/TestHelper.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/phpunit-coverage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/tests/phpunit-coverage.xml -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimeos/ai-laravel/HEAD/tests/phpunit.xml --------------------------------------------------------------------------------