forked from coduo/php-matcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (85 loc) · 2.6 KB
/
composer.json
File metadata and controls
85 lines (85 loc) · 2.6 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"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": "~8.1 || ~8.2 || ~8.3",
"ext-filter": "*",
"ext-json": "*",
"ext-simplexml": "*",
"aeon-php/calendar": "^1.0",
"coduo/php-to-string": "^3",
"doctrine/lexer": "^1.0||^2.0"
},
"require-dev": {
"ext-pcov": "*",
"phpunit/phpunit": "^10.4",
"openlss/lib-array2xml": "^1.0",
"symfony/expression-language": "^2.3|^3.0|^4.0|^5.0|^6.0",
"symfony/cache": "^2.3|^3.0|^4.0|^5.0|^6.0",
"symfony/var-exporter": "^2.3|^3.0|^4.0|^5.0|^6.0"
},
"suggest": {
"openlss/lib-array2xml": "In order ot use Coduo\\PHPMatcher\\Matcher\\XmlMatcher",
"symfony/expression-language" : "In order to use Coduo\\PHPMatcher\\Matcher\\ExpressionMatcher"
},
"autoload": {
"psr-4": {
"Coduo\\PHPMatcher\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Coduo\\PHPMatcher\\Tests\\": "tests/",
"Coduo\\PHPMatcher\\Benchmark\\": "benchmark/Coduo/PHPMatcher/Benchmark/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"benchmark": [
"Composer\\Config::disableProcessTimeout",
"tools\/phpbench run --report=matcher"
],
"build": [
"@static:analyze",
"@test",
"@test:mutation"
],
"cs:php:fix": [
"tools\/vendor\/bin\/php-cs-fixer fix --using-cache=no"
],
"test" : [
"vendor\/bin\/phpunit --coverage-html var/phpunit/coverage/html --coverage-filter src"
],
"test:mutation": [
"Composer\\Config::disableProcessTimeout",
"tools\/vendor\/bin\/infection"
],
"static:analyze": [
"tools\/vendor\/bin\/psalm --shepherd --stats",
"tools\/vendor\/bin\/phpstan analyze -c phpstan.neon",
"tools\/vendor\/bin\/php-cs-fixer fix --dry-run"
],
"tools:install": "composer install --working-dir=./tools",
"post-install-cmd": [
"@tools:install"
],
"post-update-cmd": [
"@tools:install"
]
}
}