Skip to main content

The Symfony ecommerce framework

Ultra fast, Open Source and scalable to #gigacommerce

Quick Start At GitHubAimeos Symfony ecommerce
Lines

Highlights

  • For shops from one to 1 billion items that render in 20ms
  • Multi vendor, multi channel and multi warehouse capable
  • Build multi-tentant e-commerce SaaS solutions out of the box
  • Incl. bundle, voucher, virtual, config, custom and event products
  • Turn every product into a subscription with recurring payment
  • Supports 100+ payment gateways via Omnipay PHP library
  • World class JSON REST and GraphQL API

Take a look at the Aimeos demo setups

Aimeos demo
Lines

The simplest way to ecommerce in Symfony

  1. $shop = $this->container->get('shop');
  2. $this->render( 'MyBundle:Catalog:list.html.twig', [
  3.     'listhead' => $shop->get('catalog/lists')->getHeader()
  4.     'listbody' => $shop->get('catalog/lists')->getBody()
  5. ]);
Lines

Build your custom Symfony ecommerce easily

  1. use \Aimeos\Controller\Frontend;
  2. $cntl = Frontend::create($context, 'product');
  3. $items = $cntl->uses(['text', 'media', 'price'])
  4.     ->category(123)->text('sneaker')
  5.     ->sort('name')->slice(0, 48)->search();
  1. use \Aimeos\Controller\Frontend;
  2. $cntl = Frontend::create($context, 'catalog');
  3. $catalog = $cntl->uses(['text', 'media']);
  4. $tree = $catalog->getTree();
  5. $list = $catalog->getPath(123);
  1. use \Aimeos\Controller\Frontend
  2. $product = Frontend::create($context, 'product');
  3. $item = $product->uses(['price'])->find('abc');
  4. $basket = Frontend::create($context, 'basket');
  5. $cart = $basket->addProduct($item)->get();