gmail-filter-builder/composer.json
dependabot-preview[bot] 8038cf5f63
Update phpunit/phpunit requirement from ^5.7 to ^5.7 || ^7.0
Updates the requirements on [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) to permit the latest version.
- [Release notes](https://github.com/sebastianbergmann/phpunit/releases)
- [Changelog](https://github.com/sebastianbergmann/phpunit/blob/master/ChangeLog-7.5.md)
- [Commits](https://github.com/sebastianbergmann/phpunit/compare/5.7.0...7.5.14)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-08-06 09:27:00 +00:00

50 lines
1.2 KiB
JSON

{
"name": "opdavies/gmail-filter-builder",
"description": "Generates XML to import as Gmail filters.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Oliver Davies",
"email": "oliver@oliverdavies.uk"
}
],
"require": {
"php": "^7.1",
"symfony/config": "^3.4",
"symfony/console": "^3.4",
"symfony/dependency-injection": "^3.4",
"symfony/filesystem": "^3.4",
"symfony/yaml": "^3.4",
"tightenco/collect": "^5.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.11",
"phpunit/phpunit": "^5.7 || ^7.0",
"symfony/var-dumper": "^3.4"
},
"autoload": {
"psr-4": {
"Opdavies\\GmailFilterBuilder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Opdavies\\GmailFilterBuilder\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
},
"bin": ["bin/generate-filters", "bin/generate-filters.php"],
"config": {
"sort-packages": true
},
"scripts": {
"lint": "php-cs-fixer fix",
"test": "phpunit && composer lint -- --dry-run"
}
}