-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 851 Bytes
/
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
{
"name": "navarr/smartstring",
"description": "An object that can intelligently determine whether to use grapheme_* or byte-focused string functions",
"license": [
"MIT"
],
"authors": [
{
"name": "Navarr Barnier",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Navarr\\SmartString\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Navarr\\SmartString\\Test\\": "tests/"
}
},
"require": {
"php": "^8.1"
},
"require-dev": {
"jetbrains/phpstorm-attributes": "^1",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1",
"infection/infection": "^0.26.0",
"squizlabs/php_codesniffer": "^3.6",
"roave/security-advisories": "dev-master"
}
}