| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "name": "six-shop/maker-bundle",
- "description": "A powerful CLI tool for generating SixShop extension boilerplate code",
- "type": "library",
- "keywords": [
- "sixshop",
- "thinkphp",
- "generator",
- "scaffold",
- "cli",
- "extension",
- "maker",
- "boilerplate"
- ],
- "require": {
- "topthink/framework": "^8.1",
- "symfony/console": "^7.3",
- "cakephp/migrations": "^4.6",
- "six-shop/system": "^v1.0.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^10.5",
- "mockery/mockery": "^1.6"
- },
- "license": "MIT",
- "minimum-stability": "dev",
- "prefer-stable": true,
- "autoload": {
- "psr-4": {
- "SixShop\\MakerBundle\\": "src/"
- }
- },
- "bin": [
- "bin/sixshop-maker"
- ],
- "authors": [
- {
- "name": "runphp",
- "email": "runphp@qq.com"
- }
- ],
- "config": {
- "allow-plugins": {
- "six-shop/core": false
- }
- }
- }
|