automated-typo3-update/composer.json
Daniel Siepmann 1b309bd709
WIP|FEATURE: First working test
* Parses fixtures to auto run tests for sniffs.
* Compares actual result for fixture input against expected result from
  fixture.

Relates: #46
2017-04-06 10:39:24 +02:00

36 lines
974 B
JSON

{
"name": "siepmann/typo3_update",
"description": "Auto migrate PHP Source of extensions to be compatible.",
"type": "project",
"autoload": {
"psr-4": {
"Typo3Update\\Tests\\": "tests/",
"Typo3Update\\": "src/Standards/Typo3Update/"
},
"files": [
"src/CodeSniffer/Tokenizers/TypoScript.php"
]
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/DanielSiepmann/typo3-typoscript-parser"
}
],
"require": {
"helmich/typo3-typoscript-parser": "dev-feature/allow-eol-handling",
"squizlabs/php_codesniffer": "2.8.*",
"symfony/yaml": "3.2.*"
},
"license": "GPL-2.0+",
"authors": [
{
"name": "Daniel Siepmann",
"email": "coding@daniel-siepmann.de"
}
],
"require-dev": {
"phpunit/phpunit": "^5.7",
"symfony/finder": "^3.2"
}
}