Files
san-reymoros/vendor/s9e/regexp-builder/composer.json
2020-03-31 15:31:03 +02:00

25 lines
524 B
JSON

{
"name": "s9e/regexp-builder",
"type": "library",
"description": "Single-purpose library that generates regular expressions that match a list of strings.",
"homepage": "https://github.com/s9e/RegexpBuilder/",
"keywords": ["regexp"],
"license": "MIT",
"require": {
"lib-pcre": ">=7.2",
"php": ">=5.5.1"
},
"require-dev": {
"phpunit/phpunit": "<5.8"
},
"autoload": {
"psr-4": {
"s9e\\RegexpBuilder\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"s9e\\RegexpBuilder\\Tests\\": "tests"
}
}
}