-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 954 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 954 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
33
34
35
36
37
{
"name": "kolyunya/string-processor",
"description": "PHP string processing library.",
"license": "GNU GPL v3.0",
"type": "library",
"keywords": [
"camel-case",
"kebab-case",
"snake-case",
"string",
"string-manipulation",
"string-processing",
"string-parsing"
],
"homepage": "https://github.com/Kolyunya/string-processor",
"authors": [
{
"name": "Kolyunya",
"email": "oleynikovny@mail.ru",
"homepage": "http://github.com/Kolyunya"
}
],
"minimal-stability": "stable",
"require": {
"php": ">=5.3 <8.0"
},
"require-dev": {
"phpunit/phpunit": ">=4.8 <7.0",
"squizlabs/php_codesniffer": ">=2.8 <3.0"
},
"autoload": {
"psr-4": {
"Kolyunya\\StringProcessor\\": "sources",
"Kolyunya\\StringProcessor\\Tests\\": "tests"
}
}
}