| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- {
- "name": "hyperf/devtool",
- "description": "A Devtool for Hyperf.",
- "license": "MIT",
- "keywords": [
- "php",
- "swoole",
- "hyperf",
- "devtool"
- ],
- "homepage": "https://hyperf.io",
- "support": {
- "docs": "https://hyperf.wiki",
- "issues": "https://github.com/hyperf/hyperf/issues",
- "pull-request": "https://github.com/hyperf/hyperf/pulls",
- "source": "https://github.com/hyperf/hyperf"
- },
- "require": {
- "php": ">=7.2",
- "hyperf/command": "~2.0.0",
- "hyperf/contract": "~2.0.0",
- "hyperf/di": "~2.0.0",
- "hyperf/utils": "~2.0.0"
- },
- "require-dev": {
- "malukenho/docheader": "^0.1.6",
- "mockery/mockery": "^1.0",
- "phpunit/phpunit": "^7.0.0",
- "friendsofphp/php-cs-fixer": "^2.9"
- },
- "suggest": {
- },
- "autoload": {
- "psr-4": {
- "Hyperf\\Devtool\\": "src/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "HyperfTest\\Devtool\\": "tests/"
- }
- },
- "config": {
- "sort-packages": true
- },
- "extra": {
- "branch-alias": {
- "dev-master": "2.0-dev"
- },
- "hyperf": {
- "config": "Hyperf\\Devtool\\ConfigProvider"
- }
- },
- "bin": [
- ],
- "scripts": {
- "cs-fix": "php-cs-fixer fix $1",
- "test": "phpunit --colors=always"
- }
- }
|