-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 895 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
{
"name": "sqonk/phext-core",
"description": "This is the core package to the PHEXT set of libraries for PHP. It includes general utility methods for strings, arrays, dates and numbers, each of which exist as a grouped class with the methods statically accessible.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Theo Howell",
"email": "sqonk@sqonk.com.au"
}
],
"keywords": ["strings","arrays","dates","numbers","utilities"],
"autoload": {
"psr-4": {
"sqonk\\phext\\core\\": "src/"
},
"files": ["src/global_functions.php"]
},
"require": {
"php": "^8"
},
"suggest": {
"ext-iconv": "Needed for string cleaning functions.",
"ext-mbstring": "Needed for string cleaning functions."
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^1.9"
}
}