[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-8225":3},{"id":4,"name":5,"fullName":6,"owner":5,"repo":5,"description":7,"homepage":8,"htmlUrl":9,"language":10,"languages":9,"totalLinesOfCode":9,"stars":11,"forks":12,"watchers":13,"openIssues":14,"contributorsCount":15,"subscribersCount":15,"size":15,"stars1d":15,"stars7d":16,"stars30d":17,"stars90d":15,"forks30d":15,"starsTrendScore":18,"compositeScore":19,"rankGlobal":9,"rankLanguage":9,"license":20,"archived":21,"fork":21,"defaultBranch":22,"hasWiki":23,"hasPages":23,"topics":24,"createdAt":9,"pushedAt":9,"updatedAt":34,"readmeContent":35,"aiSummary":36,"trendingCount":15,"starSnapshotCount":15,"syncStatus":37,"lastSyncTime":38,"discoverSource":39},8225,"opencart","opencart\u002Fopencart","A free shopping cart system. OpenCart is an open source PHP-based online e-commerce solution.","https:\u002F\u002Fwww.opencart.com",null,"PHP",8135,5049,583,122,0,11,25,1,41,"Other",false,"master",true,[25,26,27,28,29,30,5,31,32,33],"cart","ecommerce-framework","html5","javascript","js","open-source","php","shopping","shopping-cart","2026-06-12 02:01:50","# OpenCart\n\n## Overview\n\nOpenCart is a free open source ecommerce platform for online merchants. OpenCart provides a professional and reliable foundation to build a successful online store.\n\n[![Minimum PHP Version](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002Fphp-%3E%3D%208.0-8892BF.svg?style=flat-square)](https:\u002F\u002Fphp.net\u002F)\n[![GitHub release](https:\u002F\u002Fimg.shields.io\u002Fgithub\u002Fv\u002Frelease\u002Fopencart\u002Fopencart)](https:\u002F\u002Fgithub.com\u002Fopencart\u002Fopencart\u002Freleases)\n[![Lint](https:\u002F\u002Fgithub.com\u002Fopencart\u002Fopencart\u002Factions\u002Fworkflows\u002FLint.yml\u002Fbadge.svg)](https:\u002F\u002Fgithub.com\u002Fopencart\u002Fopencart\u002Factions\u002Fworkflows\u002FLint.yml)\n\n## How to install\n\nPlease read the [installation instructions](INSTALL.md) included in the repository or download file.\n\n## How to upgrade from previous versions\n\nPlease read the [upgrading instructions](UPGRADE.md) included in the repository or download file.\n\n## Reporting a bug\n\nRead the instructions below before you create a bug report.\n\n1. Search the [OpenCart forum](https:\u002F\u002Fforum.opencart.com\u002Fviewforum.php?f=201), ask the community if they have seen the bug or know how to fix it.\n2. Check all open and closed issues on the [GitHub bug tracker](https:\u002F\u002Fgithub.com\u002Fopencart\u002Fopencart\u002Fissues).\n3. If your bug is related to the OpenCart core code then please create a bug report on GitHub.\n4. READ the [changelog for the master branch](https:\u002F\u002Fgithub.com\u002Fopencart\u002Fopencart\u002Fblob\u002Fmaster\u002FCHANGELOG.md)\n5. Use [Google](https:\u002F\u002Fwww.google.com) to search for your issue.\n6. Make sure that your bug\u002Fissue is not related to your hosting environment.\n\nIf you are not sure about your issue, it is always best to ask the community on our [bug forum thread](https:\u002F\u002Fforum.opencart.com\u002Fviewforum.php?f=201)\n\n**Important!**\n\n- If your bug report is not related to the core code (such as a 3rd party module or your server configuration) then the issue will be closed without a reason. You must contact the extension developer, use the forum or find a commercial partner to resolve a 3rd party code issue.\n- If you would like to report a serious security bug please PM an OpenCart moderator\u002Fadministrator on the forum. Please do not report concept\u002Fideas\u002Funproven security flaws - all security reports are taken seriously but you must include the EXACT details steps to reproduce it. Please DO NOT post security flaws in a public location.\n\n## How to contribute\n\nRead the full [CONTRIBUTING guide](CONTRIBUTING.md) for environment setup, coding standards, and pull-request expectations.\n\nFork the repository, make your changes, and [submit a pull request](https:\u002F\u002Fgithub.com\u002Fopencart\u002Fopencart\u002Fwiki\u002FCreating-a-pull-request). Please be explicit in commit and PR descriptions—empty or unclear messages may be rejected.\n\nYour code must follow the [OpenCart coding standards](https:\u002F\u002Fgithub.com\u002Fopencart\u002Fopencart\u002Fwiki\u002FCoding-standards). Our automated scanners (syntax lint, PHPStan, php-cs-fixer) must pass before a PR can be merged.\n\n## Local Development with Docker\n\nThis project includes a Docker-based environment for local development.\n\n### Prerequisites\n\n* You must have Docker and Docker Compose installed on your machine. If you're installing `Composer` separately from Docker, make sure to install `docker-compose-v2`. Using the older `docker-compose` version may cause the build process (specifically the make build step) to fail. [Docker Desktop](https:\u002F\u002Fwww.docker.com\u002Fproducts\u002Fdocker-desktop\u002F) is the easiest way to get them.\n* You must have `make` installed on your system (usually pre-installed on macOS and Linux distributions).\n\n> [!IMPORTANT]\n>\n> **For Windows Users:**\n> It is **strongly recommended** to use the WSL 2 (Windows Subsystem for Linux) backend for Docker Desktop.\n> **You should clone this project _inside_ your WSL distribution (e.g., Ubuntu 24.04) for best performance.**\n> Access your project via `\\\\wsl$\\Ubuntu-24.04\\home\\youruser\\opencart` from Windows Explorer if needed.\n> Without WSL 2, file system performance will be extremely slow, making the application nearly unusable.\n> Docker Desktop will typically prompt you to enable WSL 2 during installation.\n\n> [!NOTE]\n>\n> OpenCart itself does **not** use any `.env` file for its configuration.\n> The provided `.env.docker` file is **only** for configuring the Docker Compose environment.\n> To avoid confusion with classic development workflows, this file is named `.env.docker` and placed inside the `docker` directory.\n\n### Getting Started\n\n1. Clone the repository to your local machine.\n2. Initialize the project:\n    ```bash\n    make init\n    ```\n3. Build the images:\n    ```bash\n    make build\n    ```\n4. Start all services:\n    ```bash\n    make up\n    ```\n\nAfter the process is complete, your OpenCart store will be available at `http:\u002F\u002Flocalhost`.\n\n### Common Commands\n\n* **To stop the environment:**\n    ```bash\n    make down\n    ```\n* **To view the logs from all services:**\n    ```bash\n    make logs\n    ```\n* **To enter the PHP container:**\n    ```bash\n    make php\n    ```\n* **To see all available commands:**\n    ```bash\n    make help\n    ```\n\n### Changing the PHP Version\n\nThe environment uses PHP 8.4 by default.\nYou can easily switch to a different version by editing the `PHP_VERSION` variable in the `docker\u002F.env.docker` file.\n\nFor example, to use PHP 8.2, open `docker\u002F.env.docker` and set:\n\n```env\nPHP_VERSION=8.2\n```\n\nAfter changing the version, rebuild the images:\n\n```bash\nmake build\n```\n\n### Using Docker Compose Profiles for Optional Services\n\nBy default, only the core services (`apache`, `php`, `mysql`) are started.\nOptional services such as **Adminer**, **Redis**, **Memcached**, and **PostgreSQL** can be enabled using [Docker Compose profiles](https:\u002F\u002Fdocs.docker.com\u002Fcompose\u002Fprofiles\u002F).\n\nTo enable one or more optional services, use the `--profile` flag and specify your env file:\n\n- **Start with Adminer:**\n    ```bash\n    make up profiles=\"adminer\"\n    ```\n- **Start with Redis and Memcached:**\n    ```bash\n    make up profiles=\"redis memcached\"\n    ```\n- **Start all optional services:**\n    ```bash\n   make up profiles=\"adminer redis memcached postgres\"\n    ```\n\n> [!TIP]\n>\n> You can combine any profiles as needed for your development workflow.\n\n## Versioning\n\nThe version is broken down into 4 points e.g 1.2.3.4 We use MAJOR.MINOR.FEATURE.PATCH to describe the version numbers.\n\nA MAJOR is very rare, it would only be considered if the source was effectively re-written or a clean break was desired for other reasons. This increment would likely break most 3rd party modules.\n\nA MINOR is when there are significant changes that affect core structures. This increment would likely break some 3rd party modules.\n\nA FEATURE version is when new extensions or features are added (such as a payment gateway, shipping module etc). Updating a feature version is at a low risk of breaking 3rd party modules.\n\nA PATCH version is when a fix is added, it should be considered safe to update patch versions e.g 1.2.3.4 to 1.2.3.5\n\n## Releases\n\nOpenCart will announce to developers 1 week prior to public release of FEATURE versions, this is to allow for testing of their own modules for compatibility. For bigger releases (ones that contain many core changes, features and fixes) an extended period will be considered following an announced release candidate (RC). Patch versions (which are considered safe to update with) may have a significantly reduced developer release period.\n\nThe master branch will always contain an \"_rc\" postfix of the next intended version. The next \"_rc\" version may change at any time.\n\nDeveloper release source code will not change once tagged.\n\nIf a bug is found in an announced developer release that is significant (such as a major feature is broken) then the release will be pulled. A patch version will be issued to replace it, depending on the severity of the patch an extended testing period may be announced. If the developer release version was never made public then the preceding patch version tag will be removed.\n\nTo receive developer notifications about release information, sign up to the newsletter on the [OpenCart website](https:\u002F\u002Fwww.opencart.com) - located in the footer. Then choose the developer news option.\n\n## License\n\n[GNU General Public License version 3 (GPLv3)](https:\u002F\u002Fgithub.com\u002Fopencart\u002Fopencart\u002Fblob\u002Fmaster\u002FLICENSE.md)\n\n## Links\n\n- [OpenCart homepage](https:\u002F\u002Fwww.opencart.com\u002F)\n- [OpenCart forums](https:\u002F\u002Fforum.opencart.com\u002F)\n- [OpenCart blog](https:\u002F\u002Fwww.opencart.com\u002Findex.php?route=feature\u002Fblog)\n- [How to documents](http:\u002F\u002Fdocs.opencart.com\u002Fen-gb\u002Fintroduction\u002F)\n- [Newsletter](https:\u002F\u002Fnewsletter.opencart.com\u002Fh\u002Fr\u002FB660EBBE4980C85C)\n- [Discussions](https:\u002F\u002Fgithub.com\u002Fopencart\u002Fopencart\u002Fdiscussions)\n- [Chat](https:\u002F\u002Fteams.live.com\u002Fl\u002Fcommunity\u002FFEAMBRGMM2X2wz82gI)\n","OpenCart 是一个免费开源的电子商务平台，专为在线商家提供专业的网店构建解决方案。它基于 PHP 开发，支持 HTML5 和 JavaScript 等技术，具备强大的商品管理、订单处理和支付集成等功能。此外，OpenCart 拥有活跃的社区支持和丰富的第三方扩展，能够满足不同规模电商网站的需求。适用于需要快速搭建并运行在线商店的企业和个人，无论是小型创业公司还是大型零售商都能从中受益。",2,"2026-06-11 03:16:51","top_language"]