automated-typo3-update/composer.json
Daniel Siepmann ded389aeca
TASK: Update PHP CS
* Use hash, not version, as version contains bug that not a single
  custom sniff can be executed. That would break our tests.
* Also add auto loading for tests to work, as phpcs removed autoloading
  support for composer.
* Move all sniffs to namespace to allow processing through phpcs.
* Adjust already some class names of phpcs to new conventions.

Relates: #82
2017-05-30 14:47:46 +02:00

40 lines
1.1 KiB
JSON

{
"name": "siepmann/typo3_update",
"description": "Auto migrate PHP Source of extensions to be compatible.",
"type": "php-codesniffer-standards",
"license": "GPL-2.0+",
"authors": [
{
"name": "Daniel Siepmann",
"email": "coding@daniel-siepmann.de"
}
],
"autoload-dev": {
"psr-4": {
"Typo3Update\\Tests\\": "tests/",
"PHP_CodeSniffer\\": "vendor/squizlabs/php_codesniffer/src/"
}
},
"autoload": {
"psr-4": {
"Typo3Update\\": "src/Standards/Typo3Update/",
"Typo3Update\\CodeSniffer\\": "src/CodeSniffer/"
},
"files": [
"src/CodeSniffer/Tokenizers/TypoScript.php"
]
},
"require": {
"php": ">=5.6",
"helmich/typo3-typoscript-parser": "1.1.*",
"squizlabs/php_codesniffer": "dev-master#92a902f",
"symfony/yaml": "3.2.*"
},
"require-dev": {
"phpunit/phpunit": "5.7.*",
"mikey179/vfsStream": "1.6.*",
"symfony/finder": "3.2.*",
"phpmd/phpmd": "2.6.*",
"pdepend/pdepend": "2.5.*"
}
}