forked from joomla-framework/string
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.66 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
{
"name": "joomla/string",
"type": "joomla-package",
"description": "Joomla String Package",
"keywords": ["joomla", "framework", "string"],
"homepage": "https://github.com/joomla-framework/string",
"license": "GPL-2.0-or-later",
"require": {
"php": "^7.2.5|~8.0.0|~8.1.0",
"symfony/deprecation-contracts": "^2.1"
},
"require-dev": {
"doctrine/inflector": "^1.2",
"joomla/coding-standards": "^3.0@dev",
"joomla/test": "^2.0.1",
"phpunit/phpunit": "^8.5|^9.0"
},
"conflict": {
"doctrine/inflector": "<1.2"
},
"suggest": {
"ext-mbstring": "For improved processing",
"doctrine/inflector": "To use the string inflector"
},
"autoload": {
"psr-4": {
"Joomla\\String\\": "src/"
},
"files": [
"src/phputf8/utf8.php",
"src/phputf8/ord.php",
"src/phputf8/str_ireplace.php",
"src/phputf8/str_pad.php",
"src/phputf8/str_split.php",
"src/phputf8/strcasecmp.php",
"src/phputf8/strcspn.php",
"src/phputf8/stristr.php",
"src/phputf8/strrev.php",
"src/phputf8/strspn.php",
"src/phputf8/trim.php",
"src/phputf8/ucfirst.php",
"src/phputf8/ucwords.php",
"src/phputf8/utils/ascii.php",
"src/phputf8/utils/validation.php"
]
},
"autoload-dev": {
"psr-4": {
"Joomla\\String\\Tests\\": "Tests/"
}
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-2.0-dev": "2.0-dev"
}
}
}