mirror of
http://124.126.16.154:8888/singularity/HyperfDevelopmentKit.git
synced 2026-01-15 00:35:08 +08:00
init: 初始化项目
This commit is contained in:
46
composer.json
Normal file
46
composer.json
Normal file
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"name": "singularity/hyperf-development-kit",
|
||||
"description": "The General Development Kit for Hyperf framework",
|
||||
"type": "library",
|
||||
"require": {
|
||||
"php": "~8.0",
|
||||
"hyperf/framework": "~2.2.4",
|
||||
"composer/composer": "~2.0.14"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^9.5"
|
||||
},
|
||||
"config": {
|
||||
"optimize-autoloader": true,
|
||||
"sort-packages": true
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Singularity\\HyperfDevelopmentKit\\": "src/"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"Tests\\Example\\": "tests/Example/"
|
||||
}
|
||||
},
|
||||
"authors": [
|
||||
{
|
||||
"name": "李东云",
|
||||
"email": "dongyun.li@luxcreo.ai"
|
||||
}
|
||||
],
|
||||
"minimum-stability": "stable",
|
||||
"scripts": {
|
||||
"post-root-package-install": [],
|
||||
"test": "vendor/bin/phpunit --prepend test/bootstrap.php -c phpunit.xml --colors=always",
|
||||
"cs-fix": "php-cs-fixer fix $1",
|
||||
"analyse": "phpstan analyse --memory-limit 300M -l 0 -c phpstan.neon ./app ./config"
|
||||
},
|
||||
"repositories": {
|
||||
"packagist": {
|
||||
"type": "composer",
|
||||
"url": "https://mirrors.aliyun.com/composer"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user