-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
30 lines (30 loc) · 857 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
{
"name": "icomefromthenet/reverse-regex",
"description": "Convert Regular Expressions into text, for testing",
"keywords": ["regex","testing","test data","generator"],
"homepage": "http://github.com/icomefromthenet/ReverseRegex",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Lewis Dyer",
"email": "getintouch@icomefromthenet.com",
"homepage": "http://www.icomefromthenet.com"
}
],
"require-dev": {
"phpunit/phpunit": "^8"
},
"require": {
"php" : "^7.2",
"doctrine/lexer" : "1.2.1",
"doctrine/collections" : "1.6.5",
"patchwork/utf8" : ">=1.3"
},
"autoload": {
"psr-0": {
"ReverseRegex": "src/",
"PHPStats" : "src/"
}
}
}