-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.62 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "mathiasreker/php-mbstring-extension",
"description": "The php-mbstring-extension is a PHP library that provides support for multibyte strings that are not covered by the standard PHP string functions.",
"license": "MIT",
"type": "library",
"version": "2.0.0",
"keywords": [
"mb_count_chars",
"mb_strrev",
"mb_str_pad",
"mb_ucfirst",
"mb_ucwords"
],
"authors": [
{
"name": "Mathias Reker",
"role": "Developer"
}
],
"homepage": "https://github.com/mathiasreker/php-mbstring-extension",
"require": {
"php": "^8.0",
"ext-mbstring": "*"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.30",
"friendsofphp/php-cs-fixer": "^3.15",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.6",
"rector/rector": "^1.0"
},
"autoload": {
"psr-4": {
"MathiasReker\\PhpMbFunctions\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MathiasReker\\PhpMbFunctions\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpunit/phpunit": true
},
"platform": {
"php": "8.0"
},
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"cs-check": "./vendor/bin/php-cs-fixer fix ./src --dry-run --diff",
"cs-fix": "./vendor/bin/php-cs-fixer fix ./src",
"phpstan": "./vendor/bin/phpstan analyse ./src --level=9",
"rector-check": "./vendor/bin/rector process --dry-run ./src",
"rector-fix": "./vendor/bin/rector process ./src",
"test": "./vendor/bin/phpunit --bootstrap vendor/autoload.php --colors=always tests/"
}
}