12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- {
- "name": "friendsofphp/php-cs-fixer",
- "type": "application",
- "description": "A tool to automatically fix PHP code style",
- "license": "MIT",
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Dariusz Rumiński",
- "email": "dariusz.ruminski@gmail.com"
- }
- ],
- "require": {
- "php": "^5.6 || >=7.0 <7.3",
- "ext-json": "*",
- "ext-tokenizer": "*",
- "composer/semver": "^1.4",
- "doctrine/annotations": "^1.2",
- "gecko-packages/gecko-php-unit": "^2.0 || ^3.0",
- "php-cs-fixer/diff": "^1.2",
- "symfony/console": "^3.2 || ^4.0",
- "symfony/event-dispatcher": "^3.0 || ^4.0",
- "symfony/filesystem": "^3.0 || ^4.0",
- "symfony/finder": "^3.0 || ^4.0",
- "symfony/options-resolver": "^3.0 || ^4.0",
- "symfony/polyfill-php70": "^1.0",
- "symfony/polyfill-php72": "^1.4",
- "symfony/process": "^3.0 || ^4.0",
- "symfony/stopwatch": "^3.0 || ^4.0"
- },
- "require-dev": {
- "johnkary/phpunit-speedtrap": "^1.1 || ^2.0@dev",
- "justinrainbow/json-schema": "^5.0",
- "keradus/cli-executor": "^1.0",
- "mikey179/vfsStream": "^1.6",
- "php-coveralls/php-coveralls": "^2.0",
- "php-cs-fixer/accessible-object": "^1.0",
- "phpunit/phpunit": "^5.7.23 || ^6.4.3",
- "symfony/phpunit-bridge": "^3.2.2 || ^4.0"
- },
- "suggest": {
- "ext-mbstring": "For handling non-UTF8 characters in cache signature.",
- "symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible."
- },
- "conflict": {
- "hhvm": "*"
- },
- "config": {
- "optimize-autoloader": true,
- "sort-packages": true
- },
- "autoload": {
- "psr-4": { "PhpCsFixer\\": "src/" },
- "classmap": [
- "tests/Test/AbstractFixerTestCase.php",
- "tests/Test/AbstractIntegrationCaseFactory.php",
- "tests/Test/AbstractIntegrationTestCase.php",
- "tests/Test/Assert/AssertTokensTrait.php",
- "tests/Test/IntegrationCase.php",
- "tests/Test/IntegrationCaseFactory.php",
- "tests/Test/IntegrationCaseFactoryInterface.php",
- "tests/Test/InternalIntegrationCaseFactory.php",
- "tests/TestCase.php"
- ]
- },
- "autoload-dev": {
- "psr-4": { "PhpCsFixer\\Tests\\": "tests/" }
- },
- "bin": ["php-cs-fixer"]
- }
|