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.
58 lines
1.5 KiB
58 lines
1.5 KiB
{ |
|
"name": "nexusphp/cs-config", |
|
"description": "A factory for custom rulesets for PHP CS Fixer.", |
|
"license": "MIT", |
|
"type": "library", |
|
"authors": [ |
|
{ |
|
"name": "John Paul E. Balandan, CPA", |
|
"email": "paulbalandan@gmail.com" |
|
} |
|
], |
|
"support": { |
|
"issues": "https://github.com/NexusPHP/cs-config/issues", |
|
"source": "https://github.com/NexusPHP/cs-config.git", |
|
"slack": "https://nexusphp.slack.com" |
|
}, |
|
"require": { |
|
"php": "^8.1", |
|
"ext-tokenizer": "*", |
|
"friendsofphp/php-cs-fixer": "^3.50" |
|
}, |
|
"require-dev": { |
|
"nexusphp/tachycardia": "^2.1", |
|
"phpstan/extension-installer": "^1.3", |
|
"phpstan/phpstan": "^1.10", |
|
"phpstan/phpstan-phpunit": "^1.3", |
|
"phpstan/phpstan-strict-rules": "^1.5", |
|
"phpunit/phpunit": "^10.5" |
|
}, |
|
"conflict": { |
|
"liaison/cs-config": "*" |
|
}, |
|
"minimum-stability": "dev", |
|
"prefer-stable": true, |
|
"autoload": { |
|
"psr-4": { |
|
"Nexus\\CsConfig\\": "src/" |
|
} |
|
}, |
|
"autoload-dev": { |
|
"psr-4": { |
|
"Nexus\\CsConfig\\Tests\\": "tests/" |
|
} |
|
}, |
|
"config": { |
|
"allow-plugins": { |
|
"phpstan/extension-installer": true |
|
}, |
|
"optimize-autoloader": true, |
|
"preferred-install": "dist", |
|
"sort-packages": true |
|
}, |
|
"extra": { |
|
"branch-alias": { |
|
"dev-develop": "3.x-dev" |
|
} |
|
} |
|
}
|
|
|