百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
A

aimeos-headless

> 前端框架
开源

Aimeos 云原生、API 优先的电子商务无头分发系统基于 Laravel,适用于超快速的在线商店、可扩展的市场平台、复杂的 B2B 应用程序等。

2.6K stars0 点赞2 次浏览
访问官网GitHub

工具介绍

Aimeos 云原生、API 优先的电子商务无头分发系统基于 Laravel,适用于超快速的在线商店、可扩展的市场平台、复杂的 B2B 应用程序等。

# Aimeos headless distribution :star: Star us on GitHub — it motivates a lot! [Aimeos](https://aimeos.org/Laravel) is THE ultra-fast, cloud-native and API-first headless ecommerce for Laravel! You can adapt, extend, overwrite and customize anything to your needs. ## Features Aimeos is a full-featured e-commerce package: * JSON REST API based on jsonapi.org * GraphQL API for administration * Perfect fit for AWS, Google, Azure and Kubernetes based clouds * Multi vendor, multi channel and multi warehouse * From one to 1,000,000,000+ items * Extremly fast down to 20ms * For multi-tentant e-commerce SaaS solutions with unlimited vendors * Bundles, vouchers, virtual, configurable, custom and event products * Subscriptions with recurring payments * Block/tier pricing out of the box * Extension for customer/group based prices * Discount and voucher support * Flexible basket rule system * Full-featured admin backend * Beautiful admin dashboard * Configurable product data sets * Completly modular structure * Extremely configurable and extensible * Extension for market places with millions of vendors * Translated to 30+ languages * Full RTL support * AI-based text translation * Secure and reviewed implementation * High quality source code ... and [more Aimeos features](https://aimeos.org/features) Supported languages:

           

Check out the demos: * [Aimeos frontend demo](https://laravel.demo.aimeos.org) * [Aimeos admin demo](https://admin.demo.aimeos.org) ## Alternatives ### Integrate into existing applications 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: :star: [Aimeos Laravel package](https://github.com/aimeos/aimeos-laravel) ### Full shop application If you want to set up a new application or test Aimeos, we recommend the Aimeos shop distribution. It contains everything for a quick start and you will get a fully working online shop in less than 5 minutes: :star: [Aimeos shop distribution](https://github.com/aimeos/aimeos) ## Table of content - [Requirements](#requirements) - [Installation](#installation) - [Frontend](#frontend) - [Backend](#backend) - [Customize](#customize) - [Multi-vendor](#multi-vendor) - [License](#license) - [Links](#links) ## Requirements The Aimeos headless distribution requires: - AWS, Google, Azure or Kubernetes cloud, Linux/Unix, WAMP/XAMP or MacOS environment - PHP >= 8.2 - MySQL >= 5.7.8, MariaDB >= 10.2.2, PostgreSQL 9.6+, SQL Server 2019+ - Web server (Apache, Nginx or integrated PHP web server for testing) 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](https://aimeos.org/docs/latest/laravel/setup/#upgrade)! ## Installation To install the Aimeos shop application, you need [composer 2.2+](https://getcomposer.org). 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-headless headless ``` 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 headless php artisan serve ``` **Note:** In an hosting environment, the document root of your virtual host must point to the **/.../headless/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 ``` ## JSON REST API After the installation, you can test the Aimeos JSON REST API 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/jsonapi](http://127.0.0.1:8000/jsonapi) Learn how to use the [JSON REST API](https://aimeos.org/docs/latest/frontend/jsonapi/) ### Authenticate To authenticate using e-mail and password, send a POST request: ```bash curl -X POST "http://127.0.0.1:8000/api/login?email=me@localhost&password=test" ``` If the authentication was successful, the API will return with a response like this: ```json {"access_token":"eyJ0eXAiOiJKV...","token_type":"bearer","expires_in":3600} ``` Use this access token in all further requests as HTTP header: ```bash curl -X POST "http://127.0.0.1:8000/api/me" -H "Authorization: Bearer eyJ0eXAiOiJKV..." ``` ## Backend 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](http://127.0.0.1:8000/admin) ## Cloud filesystems To use cloud storage like AWS S3 compatible object storages, adapt the `resource/fs` sections in the `./config/shop.php` file and configure the filesystem like this: ``` composer req ai-filesystem league/flysystem-aws-s3-v3 ``` ```php 'fs' => [ 'adapter' => 'FlyAwsS3', 'credentials' => [ 'key' => 'your-key', 'secret' => 'your-secret', ], 'region' => 'your-region', 'version' => 'latest|api-version', 'bucket' => 'your-bucket-name', 'prefix' => 'your-prefix', // optional 'baseurl' => 's3-domain-and-path' ], ``` For Azure Blob storage use: ``` composer req ai-filesystem league/flysystem-azure-blob-storage ``` ```php 'fs' => [ 'adapter' => 'FlyAzure', 'endpoint' => 'DefaultEndpointsProtocol=https;AccountName=your-account;AccountKey=your-api-key', 'container' => 'your-container', 'prefix' => 'your-prefix', // optional 'baseurl' => 'azure-domain-and-path' ], ``` And for Google Cloud storage: ``` composer req ai-filesystem league/flysystem-google-cloud-storage ``` ```php 'fs' => [ 'adapter' => 'FlyGoogleCloud', 'keyFile' => json_decode(file_get_contents('/path/to/keyfile.json'), true), // alternative 'keyFilePath' => '/path/to/keyfile.json', // alternative 'projectId' => 'myProject', // alternative 'prefix' => 'your-prefix' // optional 'baseurl' => 'gcloud-domain-and-path' ], ``` ## Customize Laravel and the Aimeos headless ecommerce distribution are extremely flexible and highly customizable. A lot of documentation for the [Laravel framework](https://laravel.com) and the [Aimeos ecommerce framework](https://aimeos.org/docs/latest/) exists. If you have questions about Aimeos, don't hesitate to ask in our [Aimeos forum](https://aimeos.org/help/). ## License The Aimeos shop system is licensed under the terms of the MIT and LGPLv3 license and is available for free. ## Links * [Web site](https://aimeos.org/Laravel) * [Documentation](https://aimeos.org/docs/latest/) * [Forum](https://aimeos.org/help/) * [Issue tracker](https://github.com/aimeos/aimeos-headless/issues) * [Composer packages](https://packagist.org/packages/aimeos/aimeos-headless) * [Source code](https://github.com/aimeos/aimeos-headless)

Issues· 0 开放

查看全部 Issues在 GitHub 打开

暂无开放 Issues,或尚未同步最近议题。

> 标签

JavaScriptapicloudecommerceecommerce-api

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月17日
分类前端框架
定价开源

> 相关工具

R
React
用于构建用户界面的 JavaScript 库
V
Vue.js
渐进式 JavaScript 框架
N
Next.js
基于 React 的全栈 Web 框架