Augmentation vers version 3.3.0

This commit is contained in:
Gauvain Boiché
2020-03-31 15:31:03 +02:00
parent d926806907
commit a1864c0414
2618 changed files with 406015 additions and 31377 deletions

25
vendor/s9e/regexp-builder/composer.json vendored Normal file
View File

@@ -0,0 +1,25 @@
{
"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"
}
}
}