forked from icomefromthenet/ReverseRegex
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
44 lines (44 loc) · 979 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "ilario-pierbattista/reverse-regex",
"description": "Convert Regular Expressions into text, for testing. Fork of icomefromthenet/reverse-regex",
"keywords": [
"regex",
"testing",
"test data",
"generator"
],
"homepage": "https://github.com/ilario-pierbattista/ReverseRegex",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Lewis Dyer",
"email": "[email protected]",
"homepage": "http://www.icomefromthenet.com"
}
],
"require-dev": {
"phpunit/phpunit": "^9"
},
"require": {
"php": "^7.4 | ^8",
"doctrine/lexer": "^1.2.1 || ^2",
"doctrine/collections": "^1.6.5",
"symfony/polyfill-mbstring": "^1.20.0"
},
"autoload": {
"psr-0": {
"ReverseRegex": "src/",
"PHPStats": "src/"
}
},
"scripts": {
"test": [
"composer install",
"vendor/bin/phpunit"
]
},
"conflict": {
"icomefromthenet/reverse-regex": "*"
}
}