Permalink
Cannot retrieve contributors at this time
{ | |
"name": "hunzhiwange/queryphp", | |
"description": "The QueryPHP Application.", | |
"keywords": ["php", "framework", "queryphp", "vue", "swoole", "iview"], | |
"license": "MIT", | |
"homepage": "http://www.queryphp.com", | |
"support": { | |
"issues": "https://github.com/hunzhiwange/queryphp/issues", | |
"source": "https://github.com/hunzhiwange/queryphp" | |
}, | |
"authors": [{ | |
"name": "Xiangmin Liu", | |
"email": "635750556@qq.com" | |
}], | |
"require": { | |
"php": "^8.0", | |
"ext-mbstring": "*", | |
"ext-openssl": "*", | |
"hunzhiwange/framework": "dev-master", | |
"symfony/workflow": "^5.2" | |
}, | |
"require-dev": { | |
"codedungeon/php-cli-colors": "^1.12.0", | |
"robmorgan/phinx": "^0.12.4", | |
"zircote/swagger-php": "^3.1.0" | |
}, | |
"autoload": { | |
"files": [ | |
"apps/app/Infra/functions.php" | |
], | |
"psr-4": { | |
"App\\" : "apps/app", | |
"Admin\\" : "apps/admin" | |
}, | |
"exclude-from-classmap": [ | |
"/tests/", | |
"/**/Tests/", | |
"/**/*Test.php", | |
"/**/Fixtures/", | |
"/vendor/symfony/var-dumper", | |
"/vendor/symfony/polyfill-php72", | |
"/vendor/symfony/polyfill-php73", | |
"/vendor/symfony/polyfill-mbstring", | |
"/vendor/symfony/var-dumper", | |
"/vendor/symfony/console", | |
"/vendor/symfony/translation-contracts", | |
"/vendor/symfony/translation", | |
"/vendor/symfony/service-contracts", | |
"/vendor/symfony/config", | |
"/vendor/symfony/psr-http-message-bridge", | |
"/vendor/symfony/yaml", | |
"/vendor/symfony/string", | |
"/vendor/zircote/", | |
"/vendor/filp/", | |
"/vendor/spiral/", | |
"/vendor/laminas/", | |
"/vendor/maximebf/", | |
"/vendor/vlucas/", | |
"/vendor/nunomaduro/", | |
"/vendor/gettext/", | |
"/vendor/doctrine/", | |
"/vendor/egulias/", | |
"/vendor/hunzhiwange/framework/src/Leevel/Protocol/", | |
"/vendor/hunzhiwange/framework/src/Leevel/Debug/", | |
"/vendor/psr/", | |
"/vendor/clio/", | |
"/vendor/hunzhiwange/framework/src/**/Console/", | |
"/vendor/monolog/", | |
"/vendor/codedungeon/", | |
"/vendor/league/", | |
"/vendor/nikic/php-parser/", | |
"/vendor/cakephp/", | |
"/vendor/robmorgan/phinx/" | |
] | |
}, | |
"autoload-dev": { | |
"psr-4": { | |
"Tests\\": "tests" | |
} | |
}, | |
"extra": { | |
"branch-alias": { | |
"dev-master": "1.1-dev" | |
}, | |
"leevel": { | |
"@providers": "The prividers", | |
"providers": [ | |
"App\\Infra\\Provider\\App", | |
"App\\Infra\\Provider\\Event", | |
"App\\Infra\\Provider\\Router" | |
], | |
"@ignores": "Ignore the automatic discovery prividers", | |
"ignores": [ | |
], | |
"@commands": "The commands", | |
"commands": [ | |
"App\\Console" | |
], | |
"@options": "The extend options", | |
"options": { | |
}, | |
"@i18ns": "The extend i18ns", | |
"i18ns": [ | |
], | |
"i18n-paths": { | |
"exception": [ | |
"assets/exceptions" | |
], | |
"app": [ | |
"apps" | |
] | |
}, | |
"@metas": "The metas", | |
"metas": { | |
} | |
}, | |
"leevel-console" : { | |
"view-cache": { | |
"paths": [ | |
"apps", | |
"assets/themes" | |
] | |
}, | |
"database-entity": { | |
"show_prop_black": [ | |
"update_at", | |
"delete_at", | |
"create_account", | |
"update_account" | |
], | |
"delete_at": "delete_at" | |
} | |
} | |
}, | |
"scripts": { | |
"test": "@php assets/build/phpunit --colors=always", | |
"test-coverage": "@php assets/build/phpunit --colors=always -c phpunit.xml.coverage", | |
"php-cs-fixer": "@php assets/build/php-cs-fixer fix", | |
"phpstan": "@php assets/build/phpstan analyse", | |
"migrate": "@php leevel migrate:migrate", | |
"migrate-phpunit": "@php leevel migrate:migrate -e env.phpunit", | |
"post-root-package-install": [ | |
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"", | |
"@php -r \"file_exists('.env.phpunit') || copy('.env.phpunit.example', '.env.phpunit');\"", | |
"@php -r \"file_exists('assets/frontend/.env.local') || copy('assets/frontend/.env.example', 'assets/frontend/.env.local');\"", | |
"@php -r \"file_exists('assets/frontend/.env.production') || copy('assets/frontend/.env.example', 'assets/frontend/.env.production');\"" | |
], | |
"post-create-project-cmd": [ | |
"@php leevel links" | |
], | |
"post-autoload-dump": [ | |
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"", | |
"@php -r \"file_exists('.env.phpunit') || copy('.env.phpunit.example', '.env.phpunit');\"", | |
"@php -r \"file_exists('assets/frontend/.env.local') || copy('assets/frontend/.env.example', 'assets/frontend/.env.local');\"", | |
"@php -r \"file_exists('assets/frontend/.env.production') || copy('assets/frontend/.env.example', 'assets/frontend/.env.production');\"" | |
] | |
}, | |
"config": { | |
"preferred-install": "dist", | |
"sort-packages": true, | |
"optimize-autoloader": true | |
}, | |
"minimum-stability": "dev", | |
"prefer-stable": true | |
} |