-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 880 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 880 Bytes
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
{
"keywords": [
"regular expressions",
"regex",
"oop",
"library"
],
"authors": [{
"name": "Mariano Custiel",
"email": "jmcustiel@gmail.com",
"homepage": "https://github.com/mcustiel",
"role": "Developer"
}],
"autoload": {
"psr-4": {
"Mcustiel\\PhpSimpleRegex\\" : "src"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Mcustiel\\PhpSimpleRegex\\" : "tests/unit"
}
},
"name": "mcustiel/php-simple-regex",
"type": "library",
"description": "This is a library with a set of utils to execute and get the response from regular expressions",
"license": "GPL-3.0+",
"require": {
"php": ">=5.5"
},
"require-dev": {
"phpunit/phpunit": "~5.0",
"verbalexpressions/php-verbal-expressions": "dev-master",
"selvinortiz/flux": "dev-master",
"markwilson/verbal-expressions-php": "dev-master",
"nordbjerg/verbal-expressions-php": "dev-master"
}
}