Integrated online shop based on Laravel 8 and the Aimeos e-commerce framework for ultra-fast online shops, scalable marketplaces, complex B2B applications and #gigacommerce
:star: Star us on GitHub — it motivates us a lot! 😀
Aimeos is THE ultra-fast, cloud-native and
API-first e-commerce platform! You can install it within 5 minutes
and can adapt, extend, overwrite and customize anything to your needs.
Aimeos is a full-featured e-commerce package:
… and more Aimeos features
Supported languages:
Check out the demos:
To build a single page application (SPA) respectively a progressive web
application (PWA), the Aimeos headless distribution is the right choice
with API-only and JWT authentication pre-configured:
⭐ Aimeos headless distribution
You already have an existing Laravel application and want to add a shop to your
web site? Install the Aimeos composer package for Laravel and add e-commerce to
your existing application in minutes:
The Aimeos shop distribution requires:
If required PHP extensions are missing, composer
will tell you about the missing
dependencies.
If you want to upgrade between major versions, please have a look into the
upgrade guide!
To install the Aimeos shop application, you need composer 2.2+.
On the CLI, execute this command for a complete installation including a working setup:
wget https://getcomposer.org/download/latest-stable/composer.phar -O composer
php composer create-project aimeos/aimeos myshop
You will be asked for the parameters of your database and mail server as well as an
e-mail and password used for creating the administration account.
In a local environment, you can use the integrated PHP web server to test your new Aimeos
installation. Simply execute the following command to start the web server:
cd myshop
php artisan serve
Note: In an hosting environment, the document root of your virtual host must point to
the /…/myshop/public/ directory and you have to change the APP_URL
setting in your .env
file to your domain without port, e.g.:
APP_URL=http://myhostingdomain.com
After the installation, you can test the Aimeos shop frontend by calling the URL of your
VHost in your browser. If you use the integrated PHP web server, you should browse
this URL: http://127.0.0.1:8000
The Aimeos administration interface will be available at /admin
in your VHost. When using
the integrated PHP web server, call this URL: http://127.0.0.1:8000/admin
Laravel and the Aimeos e-commerce package are extremely flexible and highly customizable.
A lot of documentation for the Laravel framework and the
Aimeos e-commerce framework exists. If you have questions
about Aimeos, don’t hesitate to ask in our Aimeos forum.
For more details about Aimeos Laravel integration, please have a look at its
repository.
For shops which offers multiple languages, just add this line to your ./myshop/.env
file:
SHOP_MULTILOCALE=true
Then, the language will be added to the routes automatically. You can set up the available
languages in the “Locale > Locale” panel
of the Aimeos admin backend.
If you want to have all category, product and page URLs as top level URLs like /shoes
,
/my-sneaker
and /about-us
, then you can enable the Aimeos multi-routing feature in
your ./myshop/.env
file:
SHOP_MULTIROUTE=true
Caution: This will affect performance as it requires additional database queries for
each request!
To enable multi-vendor features, add this settings to the ./myshop/.env
file:
SHOP_MULTISHOP=true
If you want to allow vendors to register themselves as sellers, set this option in the
./myshop/.env
file too:
SHOP_REGISTRATION=true
By default, newly registered sellers have administrator privileges in the backend for
their own site. For a more limited access to the backend, you can change the permission
level to “editor” in the ./myshop/.env
file:
SHOP_PERMISSION=editor
You can change the permissions associated to “admin” or “editor” by adding your own version
of the JQAdm resource configuration
to the “admin” section of your ./config/shop.php
file.
The Aimeos shop system is licensed under the terms of the MIT and LGPLv3 license and
is available for free.