This repository has been archived by the owner on Dec 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dae50a5
commit 5984635
Showing
1 changed file
with
79 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,81 +1,81 @@ | ||
{ | ||
"name": "typo3/cms-composer-package-generator", | ||
"license": "GPL-2.0-or-later", | ||
"description": "Script for generating TYPO3 CMS packages", | ||
"keywords": ["composer", "typo3"], | ||
"homepage": "http://composer.typo3.org", | ||
"authors": [ | ||
{ | ||
"name": "Lars Peipmann", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Fabien Udriot", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Simon Gilli", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.3", | ||
"ext-SimpleXML": "*", | ||
"ext-json": "*", | ||
"ext-zlib": "*", | ||
"composer/satis": "^2.0@dev", | ||
"guzzlehttp/guzzle": "^6.5", | ||
"symfony/console": "^5.3" | ||
}, | ||
"require-dev": { | ||
"friendsofphp/php-cs-fixer": "^2.16", | ||
"overtrue/phplint": "^3.0", | ||
"symfony/debug-pack": "*", | ||
"symfony/maker-bundle": "*", | ||
"symfony/test-pack": "*", | ||
"symfony/var-dumper": "*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"TYPO3\\Composer\\": "src/Classes/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"classmap": [ | ||
"Tests/" | ||
] | ||
}, | ||
"bin": ["bin/typo3-cms-package-generator"], | ||
"config": { | ||
"bin-dir": "bin", | ||
"platform": { | ||
"php": "7.4.16" | ||
}, | ||
"sort-packages": true | ||
}, | ||
"scripts": { | ||
"ci": [ | ||
"@ci:composer", | ||
"@ci:php" | ||
], | ||
"ci:composer": [ | ||
"@ci:composer:validate" | ||
], | ||
"ci:composer:validate": "composer validate", | ||
"ci:php": [ | ||
"@ci:php:cs", | ||
"@ci:php:lint", | ||
"@ci:php:unit" | ||
], | ||
"ci:php:cs": "php-cs-fixer fix -v --dry-run --using-cache no --diff --diff-format=udiff", | ||
"ci:php:lint": "phplint", | ||
"ci:php:unit": "phpunit -c ./Build/UnitTests.xml --log-junit var/log/phpunit-unit.xml --testsuite \"Core tests\"", | ||
"fix": [ | ||
"@fix:php" | ||
], | ||
"fix:php": [ | ||
"@fix:php:cs" | ||
], | ||
"fix:php:cs": "php-cs-fixer fix" | ||
} | ||
"name": "typo3/cms-composer-package-generator", | ||
"license": "GPL-2.0-or-later", | ||
"description": "Script for generating TYPO3 CMS packages", | ||
"keywords": ["composer", "typo3"], | ||
"homepage": "http://composer.typo3.org", | ||
"authors": [ | ||
{ | ||
"name": "Lars Peipmann", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Fabien Udriot", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Simon Gilli", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.3", | ||
"ext-SimpleXML": "*", | ||
"ext-json": "*", | ||
"ext-zlib": "*", | ||
"composer/satis": "^2.0@dev", | ||
"guzzlehttp/guzzle": "^6.5", | ||
"symfony/console": "^5.3" | ||
}, | ||
"require-dev": { | ||
"friendsofphp/php-cs-fixer": "^2.16", | ||
"overtrue/phplint": "^3.0", | ||
"symfony/debug-pack": "*", | ||
"symfony/maker-bundle": "*", | ||
"symfony/test-pack": "*", | ||
"symfony/var-dumper": "*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"TYPO3\\Composer\\": "src/Classes/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"classmap": [ | ||
"Tests/" | ||
] | ||
}, | ||
"bin": ["bin/typo3-cms-package-generator"], | ||
"config": { | ||
"bin-dir": "bin", | ||
"platform": { | ||
"php": "7.4.16" | ||
}, | ||
"sort-packages": true | ||
}, | ||
"scripts": { | ||
"ci": [ | ||
"@ci:composer", | ||
"@ci:php" | ||
], | ||
"ci:composer": [ | ||
"@ci:composer:validate" | ||
], | ||
"ci:composer:validate": "composer validate", | ||
"ci:php": [ | ||
"@ci:php:cs", | ||
"@ci:php:lint", | ||
"@ci:php:unit" | ||
], | ||
"ci:php:cs": "php-cs-fixer fix -v --dry-run --using-cache no --diff --diff-format=udiff", | ||
"ci:php:lint": "phplint", | ||
"ci:php:unit": "phpunit -c ./Build/UnitTests.xml --log-junit var/log/phpunit-unit.xml --testsuite \"Core tests\"", | ||
"fix": [ | ||
"@fix:php" | ||
], | ||
"fix:php": [ | ||
"@fix:php:cs" | ||
], | ||
"fix:php:cs": "php-cs-fixer fix" | ||
} | ||
} |