You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
130 lines
4.1 KiB
130 lines
4.1 KiB
{ |
|
"name": "baijunyao/laravel-bjyblog", |
|
"description": "Laravel blog.", |
|
"keywords": ["framework", "laravel", "bjyblog", "blog"], |
|
"authors": [ |
|
{ |
|
"name": "baijunyao", |
|
"email": "baijunyao@baijunyao.com", |
|
"homepage": "https://baijunyao.com", |
|
"role": "Developer" |
|
} |
|
], |
|
"license": "MIT", |
|
"type": "project", |
|
"require": { |
|
"php": "^7.2.5", |
|
"algolia/algoliasearch-client-php": "^2.5", |
|
"appstract/laravel-opcache": "^3.0", |
|
"baidu/aip-sdk": "^2.2", |
|
"baijunyao/laravel-flash": "^2.0", |
|
"baijunyao/laravel-plugin-manager": "^3.0", |
|
"baijunyao/laravel-print": "^3.0", |
|
"baijunyao/laravel-restful": "^2.3", |
|
"baijunyao/laravel-scout-elasticsearch": "^5.0", |
|
"baijunyao/laravel-support": "^1.3", |
|
"composer/semver": "^1.4", |
|
"davejamesmiller/laravel-breadcrumbs": "^5.3", |
|
"doctrine/dbal": "^2.5", |
|
"fideloper/proxy": "^4.2", |
|
"fruitcake/laravel-cors": "^1.0", |
|
"fukuball/jieba-php": "~0.25", |
|
"genealabs/laravel-model-caching": "^0.8", |
|
"graham-campbell/markdown": "^11.0", |
|
"guzzlehttp/guzzle": "^6.3", |
|
"iidestiny/laravel-filesystem-oss": "^1.2", |
|
"intervention/image": "^2.4", |
|
"jenssegers/agent": "^2.6", |
|
"kalnoy/nestedset": "^5.0", |
|
"laravel/framework": "^7.0", |
|
"laravel/passport": "^8.0", |
|
"laravel/socialite": "^4.1", |
|
"laravel/tinker": "^2.0", |
|
"laravel/ui": "^2.0", |
|
"laravelium/feed": "^7.0", |
|
"league/commonmark-ext-strikethrough": "^1.0", |
|
"league/commonmark-ext-table": "^2.0", |
|
"league/html-to-markdown": "^4.6", |
|
"mews/purifier": "^3.0", |
|
"overtrue/laravel-follow": "^1.1", |
|
"overtrue/laravel-lang": "^3.0", |
|
"paquettg/php-html-parser": "^2.1", |
|
"predis/predis": "^1.1", |
|
"sentry/sentry-laravel": "1.7.0", |
|
"simplesoftwareio/simple-qrcode": "^4.2", |
|
"socialiteproviders/qq": "^3.0", |
|
"socialiteproviders/vkontakte": "^4.0", |
|
"socialiteproviders/weibo": "^3.0", |
|
"spatie/laravel-backup": "^6.3", |
|
"stichoza/google-translate-php": "^4.0", |
|
"symfony/filesystem": "^5.1" |
|
}, |
|
"require-dev": { |
|
"baijunyao/laravel-test-support": "^4.2", |
|
"barryvdh/laravel-ide-helper": "^2.4", |
|
"beyondcode/laravel-dump-server": "^1.0", |
|
"facade/ignition": "^2.0", |
|
"filp/whoops": "^2.0", |
|
"friendsofphp/php-cs-fixer": "^2.14", |
|
"fzaninotto/faker": "^1.9.1", |
|
"itsgoingd/clockwork": "^4.0", |
|
"laravel/dusk": "^5.6", |
|
"mockery/mockery": "^1.3.1", |
|
"nunomaduro/collision": "^4.1", |
|
"nunomaduro/larastan": "0.5.5", |
|
"phpstan/phpstan": "0.12.19", |
|
"phpunit/phpunit": "^8.5" |
|
}, |
|
"config": { |
|
"optimize-autoloader": true, |
|
"preferred-install": "dist", |
|
"sort-packages": true, |
|
"platform": { |
|
"php": "7.2.5" |
|
} |
|
}, |
|
"extra": { |
|
"laravel": { |
|
"dont-discover": [ |
|
"itsgoingd/clockwork" |
|
] |
|
} |
|
}, |
|
"autoload": { |
|
"psr-4": { |
|
"App\\": "app/" |
|
}, |
|
"classmap": [ |
|
"database/seeds", |
|
"database/factories" |
|
], |
|
"files": [ |
|
"app/Support/helpers.php" |
|
] |
|
}, |
|
"autoload-dev": { |
|
"psr-4": { |
|
"Tests\\": "tests/" |
|
} |
|
}, |
|
"minimum-stability": "dev", |
|
"prefer-stable": true, |
|
"scripts": { |
|
"phpcs": "vendor/bin/php-cs-fixer fix", |
|
"phpstan": "vendor/bin/phpstan analyse --ansi", |
|
"post-autoload-dump": [ |
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", |
|
"@php artisan package:discover --ansi" |
|
], |
|
"post-root-package-install": [ |
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" |
|
], |
|
"post-create-project-cmd": [ |
|
"@php artisan key:generate --ansi" |
|
], |
|
"post-update-cmd": [ |
|
"@php artisan ide-helper:generate", |
|
"@php artisan ide-helper:meta" |
|
] |
|
} |
|
}
|
|
|