-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 962 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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "hapheus/laravel-text-spinner",
"description": "A Laravel package to spin text.",
"keywords": [
"text spinner",
"laravel",
"spinner",
"text generator",
"random text"
],
"license": "MIT",
"authors": [
{
"name": "Franz Haberfellner",
"email": "haf68k@gmail.com"
}
],
"require": {
"illuminate/support": "^5|^6|^7|^8|^9"
},
"require-dev": {
"phpunit/phpunit": "^9.1",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"HAF\\TextSpinner\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"HAF\\TextSpinner\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs --standard=psr2 src tests"
},
"extra": {
"laravel": {
"providers": [
"HAF\\TextSpinner\\TextSpinnerServiceProvider"
],
"aliases": {
"TextSpinner": "HAF\\TextSpinner\\TextSpinnerFacade"
}
}
}
}