-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
70 lines (70 loc) · 1.9 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "sissokho/laravel-dev-joke",
"description": "This package offer a simple way to fetch a random dev joke from the DevJoke API",
"keywords": [
"sissokho",
"laravel-dev-joke",
"dev-joke-api",
"integration"
],
"homepage": "https://github.com/sissokho/laravel-dev-joke",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mouhamadou Moustapha SISSOKHO",
"email": "siskomouhamed@gmail.com",
"homepage": "https://sissokho.netlify.app",
"role": "Developer"
}
],
"require": {
"php": "^8.1 || ^8.2",
"illuminate/console": "^9.0 || ^10.0",
"illuminate/support": "^9.0 || ^10.0"
},
"require-dev": {
"orchestra/testbench": "^7.0 || ^8.0",
"phpunit/phpunit": "^9.5",
"guzzlehttp/guzzle": "^7.4",
"laravel/pint": "^1.1",
"nunomaduro/larastan": "^2.0",
"nunomaduro/collision": "^6.0"
},
"autoload": {
"psr-4": {
"Sissokho\\LaravelDevJoke\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sissokho\\LaravelDevJoke\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Sissokho\\LaravelDevJoke\\DevJokeServiceProvider"
],
"aliases": {
"DevJoke": "Sissokho\\LaravelDevJoke\\Facades\\DevJoke"
}
}
},
"scripts": {
"stylefix": "./vendor/bin/pint -v",
"test:unit": "./vendor/bin/phpunit",
"test:types": "./vendor/bin/phpstan analyse",
"test:style": "./vendor/bin/pint --test -v",
"test": [
"@test:style",
"@test:types",
"@test:unit"
]
}
}