-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (50 loc) · 1.51 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
{
"name": "glowy/strings",
"description": "Strings Component provide a fluent, object-oriented interface for working with multibyte string, allowing you to chain multiple string operations together using a more readable syntax compared to traditional PHP strings functions.",
"license": "MIT",
"keywords": [
"Strings", "strings", "php-strings", "php", "glowy", "glowyphp", "strings-manipulation"
],
"support": {
"source": "https://github.com/glowyphp/strings",
"issues": "https://github.com/glowyphp/strings/issues"
},
"authors": [
{
"name": "Sergey Romanenko",
"email": "[email protected]",
"homepage": "https://github.com/Awilum"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-mbstring": "*",
"glowy/macroable": "^4.0"
},
"autoload":{
"psr-4": {
"Glowy\\Strings\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"config": {
"apcu-autoloader": true,
"optimize-autoloader": true,
"platform-check": false,
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"ext-iconv": "*",
"doctrine/coding-standard": "9.0.0",
"pestphp/pest": "^1.21.1",
"phpstan/phpstan": "^1.8.0",
"symfony/var-dumper": "^6.1.0"
}
}