-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
43 lines (43 loc) · 1.09 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
{
"name": "koenhendriks/laravel-str-acronym",
"description": "A package to be able to generate acronyms from strings in Laravel projects using the Str helper and supports the Stringable class.",
"type": "library",
"license": "MIT",
"keywords": [
"koenhendriks",
"laravel",
"acronym",
"str-acronym",
"laravel-str-acronym"
],
"homepage": "https://github.com/koenhendriks/laravel-str-acronym",
"autoload": {
"psr-4": {
"KoenHendriks\\StrAcronym\\": "src/"
}
},
"authors": [
{
"name": "Koen Hendriks",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"illuminate/support": "^10.5|^11.0"
},
"extra": {
"laravel": {
"providers": [
"KoenHendriks\\StrAcronym\\StrServiceProvider"
]
}
},
"scripts": {
"test": "./vendor/bin/phpunit"
},
"require-dev": {
"orchestra/testbench": "^8.1",
"phpunit/phpunit": "^10.0"
}
}