Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
queryphp/composer.json
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
162 lines (162 sloc)
5.12 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "hunzhiwange/queryphp", | |
"description": "The QueryPHP Application.", | |
"keywords": ["php", "framework", "queryphp"], | |
"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.1", | |
"ext-mbstring": "*", | |
"ext-openssl": "*", | |
"composer-runtime-api": ">=2.1", | |
"hunzhiwange/framework": "^1.1.17", | |
"league/csv": "^9.8", | |
"nesbot/carbon": "^2.66", | |
"nyholm/psr7": "^1.5", | |
"s1syphos/php-simple-captcha": "^2.2", | |
"spiral/dumper": "^2.14.1", | |
"spiral/roadrunner": "^2.12.1", | |
"symfony/psr-http-message-bridge": "^2.0" | |
}, | |
"require-dev": { | |
"codedungeon/php-cli-colors": "^1.12.0", | |
"robmorgan/phinx": "^0.12.4", | |
"zircote/swagger-php": "^3.1.0" | |
}, | |
"autoload": { | |
"files": [ | |
"app/Infra/functions.php" | |
], | |
"psr-4": { | |
"App\\" : "app" | |
}, | |
"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/maximebf/", | |
"/vendor/vlucas/", | |
"/vendor/nunomaduro/", | |
"/vendor/gettext/", | |
"/vendor/doctrine/", | |
"/vendor/egulias/", | |
"/vendor/hunzhiwange/framework/src/Leevel/Debug/", | |
"/vendor/psr/", | |
"/vendor/clio/", | |
"/vendor/hunzhiwange/framework/src/**/Console/", | |
"/vendor/codedungeon/", | |
"/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": [ | |
"app", | |
"assets/themes" | |
] | |
}, | |
"database-entity": { | |
"show_prop_black": [ | |
"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');\"" | |
], | |
"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');\"" | |
] | |
}, | |
"config": { | |
"preferred-install": "dist", | |
"sort-packages": true, | |
"optimize-autoloader": true | |
}, | |
"minimum-stability": "dev", | |
"prefer-stable": true | |
} |