-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
70 lines (70 loc) · 1.37 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "rawr/t-regx",
"type": "library",
"description": "PHP regular expression brought up to modern standards.",
"license": "MIT",
"scripts": {
"fqn": "fqn-check src",
"test": "phpunit test --no-coverage"
},
"keywords": [
"pattern",
"patterns",
"pcre",
"t-regx",
"tregx",
"regex",
"regexp",
"regexps",
"regular",
"expression",
"match",
"search",
"preg",
"split",
"prepared patterns",
"prepared",
"delimiters"
],
"autoload": {
"files": [
"helper/helper.php"
],
"psr-4": {
"TRegx\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"test/"
],
"files": [
"test/Supposition/format.php",
"test/Supposition/provided.php"
],
"psr-4": {
"Test\\": "test/",
"Test\\Feature\\TRegx\\": "test/Feature/",
"Test\\Functional\\TRegx\\": "test/Functional/",
"Test\\Legacy\\TRegx\\": "test/Legacy/",
"Test\\Structure\\TRegx\\": "test/Structure/",
"Test\\Supposition\\TRegx\\": "test/Supposition/"
}
},
"require": {
"php": ">=7.1.0",
"ext-mbstring": "*"
},
"require-dev": {
"ext-json": "*",
"phpunit/phpunit": "^9.5.4 || ^8.0 || ^7.5",
"rawr/cross-data-providers": "^2.3.0",
"rawr/fqn-check": "^1.3.0"
},
"archive": {
"exclude": [
"/test/**",
"/test"
]
}
}