-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
50 lines (50 loc) · 1.14 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
{
"name": "jawira/case-converter",
"type": "library",
"description": "Convert strings between 13 naming conventions: Snake case, Camel case, Pascal case, Kebab case, Ada case, Train case, Cobol case, Macro case, Upper case, Lower case, Sentence case, Title case and Dot notation.",
"keywords": [
"Ada case",
"Camel case",
"Cobol case",
"Dot notation",
"Kebab case",
"Lower case",
"Macro case",
"Pascal case",
"Sentence case",
"Snake case",
"Title case",
"Train case",
"Upper case"
],
"homepage": "https://jawira.github.io/case-converter/",
"license": "MIT",
"authors": [
{
"name": "Jawira Portugal",
"email": "dev@tugal.be"
}
],
"require": {
"php": ">=7.4",
"ext-mbstring": "*"
},
"require-dev": {
"behat/behat": "^3.0",
"phpstan/phpstan": "^v2",
"phpunit/phpunit": "^9.0"
},
"suggest": {
"pds/skeleton": "PHP Package Development Standards",
"phing/phing": "PHP Build Tool"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Jawira\\CaseConverter\\": "src/"
}
}
}