-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1009 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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "granam/string",
"license": "MIT",
"authors": [
{
"name": "Jaroslav Týc",
"homepage": "https://www.jaroslavtyc.com",
"role": "Original author"
}
],
"type": "project",
"description": "Lightweight string wrapper",
"keywords": [
"php",
"string",
"object"
],
"homepage": "https://github.com/granam/string",
"autoload": {
"psr-4": {
"Granam\\String\\": "String"
}
},
"autoload-dev": {
"psr-4": {
"Granam\\Tests\\String\\": "tests/String",
"Granam\\Tests\\ExceptionsHierarchy\\": "vendor/granam/exceptions-hierarchy/tests/ExceptionsHierarchy"
}
},
"require": {
"php": ">=7.4",
"ext-intl": "*",
"ext-mbstring": "*",
"granam/strict-object": ">=3.0",
"granam/scalar": "^5.0"
},
"require-dev": {
"granam/exceptions-hierarchy": "^5.0",
"mockery/mockery": "^1.2",
"phpunit/phpunit": ">=9.0",
"rector/rector": "^0.14.2"
},
"config": {
"sort-packages": true
}
}