-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 951 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
{
"name": "salernolabs/camelize",
"description": "Utility for camel and uncamel casing words or phrases.",
"keywords": [
"PHP",
"Camel Case"
],
"homepage": "http://www.salernolabs.com/",
"license": "MIT",
"authors": [
{
"name": "Eric Salerno",
"email": "[email protected]",
"homepage": "http://www.ericsalerno.com/",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/salernolabs/camelize/issues",
"source": "https://github.com/salernolabs/camelize/releases"
},
"require":{
"php": ">=7.2",
"ext-mbstring": "*"
},
"require-dev":{
"phpunit/phpunit": "6.5"
},
"autoload":{
"psr-4": {
"SalernoLabs\\Camelize\\": "src/",
"SalernoLabs\\Tests\\Camelize\\": "tests/"
}
}
}