-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
37 lines (37 loc) · 1.07 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
{
"name": "sourceability/string-matcher",
"description": "A library which makes it easy to use multiple approaches to find the best matching string",
"autoload": {
"psr-4": {
"Sourceability\\StringMatcher\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sourceability\\StringMatcher\\Tests\\": "tests/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/sourceability/coding-standard",
"no-api": true
}
],
"require": {
"php": ">=7.2",
"beberlei/assert": ">=2.0",
"lstrojny/functional-php": "^1.9",
"ext-mbstring": "*"
},
"require-dev": {
"phpstan/phpstan-beberlei-assert": "^0.12",
"phpstan/phpstan-deprecation-rules": "^0.12",
"phpunit/phpunit": "^8.5",
"sourceability/coding-standard": "^1.0@dev",
"sourceability/phpstan-rules": "dev-master",
"thecodingmachine/phpstan-strict-rules": "^0.12"
},
"type": "library",
"license": "MIT"
}