-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.04 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.04 KB
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
{
"name": "ssolweb/string-morpher",
"description": "A powerful string manipulation library",
"license": "MIT",
"keywords": [
"string",
"manipulation",
"masking",
"morphing",
"changes",
"laravel"
],
"type": "library",
"authors": [
{
"name": "Vinicius de Santana",
"email": "vinicius.vts@gmail.com"
}
],
"homepage": "https://ssolweb.github.io/string-morpher/",
"support": {
"issues": "https://github.com/SSolWEB/string-morpher/issues",
"source": "https://github.com/SSolWEB/string-morpher/"
},
"autoload": {
"psr-4": {
"SSolWEB\\StringMorpher\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SSolWEB\\StringMorpher\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0|^10.0|^11.0",
"squizlabs/php_codesniffer": "3.*"
}
}