-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 785 Bytes
/
Copy pathcomposer.json
File metadata and controls
32 lines (32 loc) · 785 Bytes
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
{
"name": "garrettw/stringobject",
"description": "PHP class that wraps most if not all of the string manipulation functions, so that you can work with strings as objects",
"keywords": ["string","manipulation","wrapper"],
"type": "library",
"homepage": "https://github.com/garrettw/stringobject",
"license": "ISC",
"authors": [
{
"name": "Garrett Whitehorn",
"homepage": "http://garrettw.net/",
"role": "Lead Developer"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"phpspec/phpspec": "^7.5",
"friendsofphp/php-cs-fixer": "^3.64",
"phpstan/phpstan": "^1.12"
},
"autoload": {
"psr-4": {
"StringObject\\": "src/"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse src --level=9",
"test": "vendor/bin/phpspec run -v"
}
}