automated-typo3-update/composer.json
Daniel Siepmann af8244f986
WIP|FEATURE: Split tokenizing into dedicated classes
* As each node has to be handled differently.
* Also we can attach many information for some nodes to the token, to
  make linting eaiser. But that's specific per node and those goes to an
  own class.

Relates #67
2017-05-04 15:58:36 +02:00

41 lines
1.2 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/"
}
},
"autoload": {
"psr-4": {
"Typo3Update\\": "src/Standards/Typo3Update/",
"Typo3Update\\CodeSniffer\\": "src/CodeSniffer/"
},
"files": [
"src/CodeSniffer/Tokenizers/TypoScript.php",
"src/CodeSniffer/Tokenizers/Fluid.php"
]
},
"require": {
"php": ">=5.6",
"helmich/typo3-typoscript-parser": "1.1.*",
"typo3fluid/fluid": "2.3.*",
"squizlabs/php_codesniffer": "2.8.*",
"symfony/yaml": "3.2.*",
"higidi/composer-phpcodesniffer-standards-plugin": "*"
},
"require-dev": {
"phpunit/phpunit": "5.7.*",
"symfony/finder": "3.2.*",
"phpmd/phpmd": "2.6.*",
"pdepend/pdepend": "2.5.*"
}
}