forked from coduo/php-matcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.18 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
{
"name": "coduo/php-matcher",
"type": "library",
"description": "PHP Matcher enables you to match values with patterns",
"keywords": ["json", "matcher", "tests", "match"],
"license": "MIT",
"authors": [
{
"name": "Michał Dąbrowski",
"email": "dabrowski@brillante.pl"
},
{
"name": "Norbert Orzechowicz",
"email": "norbert@orzechowicz.pl"
}
],
"require": {
"php": ">=7.0.0",
"ext-filter": "*",
"coduo/php-to-string": "^2",
"symfony/property-access": "^2.3|^3.0|^4.0",
"symfony/expression-language": "^2.3|^3.0|^4.0",
"doctrine/lexer": "1.0.*",
"openlss/lib-array2xml": "~0.0.9"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"friendsofphp/php-cs-fixer": "^2.4"
},
"autoload": {
"psr-4": {
"Coduo\\PHPMatcher\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Coduo\\PHPMatcher\\Tests\\": "tests/"
}
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "3.2-dev"
}
}
}