-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.25 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.25 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "zoneconnect/just-jokes",
"description": "A number of funny jokes bro",
"keywords": [
"zoneconnect",
"jokesapp",
"package",
"laravel"
],
"type": "library",
"homepage": "https://github.com/zone-connect/TutorialPackage",
"license": "MIT",
"require": {
"php": ">=7.4",
"guzzlehttp/guzzle": "^7.4"
},
"autoload": {
"psr-4": {
"Zoneconnect\\JustJokes\\": "src/",
"Zoneconnect\\JustJokes\\Database\\": "database/"
}
},
"autoload-dev": {
"psr-4": {
"Zoneconnect\\JustJokes\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Kenny James",
"email": "kenny@zone-connect.com",
"homepage": "https://zone-connect.com",
"role": "Developer"
}
],
"require-dev": {
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^7.6"
},
"extra": {
"laravel": {
"providers": [
"Zoneconnect\\JustJokes\\JokesServiceProvider"
],
"aliases": {
"Jokes": "Zoneconnect\\JustJokes\\Facade\\Jokes"
}
}
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/zone-connect"
},
{
"type": "other",
"url": "https://zone-connect.com/#contact-digital-marketers"
}
]
}