-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
60 lines (60 loc) · 1.69 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
{
"name": "think.studio/laravel-recently-viewed",
"description": "Package to make quickly recently viewed functionality",
"keywords": [
"recently-viewed",
"laravel-recently-viewed"
],
"homepage": "https://github.com/dev-think-one/laravel-recently-viewed",
"license": "MIT",
"authors": [
{
"name": "Yaroslav Georgitsa",
"email": "[email protected]",
"homepage": "https://github.com/yaroslawww",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "^9.0|^10.0|^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.25",
"orchestra/testbench": "^8.10",
"phpunit/phpunit": "^10.3",
"psalm/plugin-laravel": "^2.8",
"vimeo/psalm": "^5.12"
},
"autoload": {
"psr-4": {
"RecentlyViewed\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"RecentlyViewed\\Tests\\": "tests"
}
},
"scripts": {
"psalm": "vendor/bin/psalm",
"test": "XDEBUG_MODE=coverage vendor/bin/phpunit --colors=always",
"test-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --colors=always --coverage-html coverage",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"RecentlyViewed\\ServiceProvider"
],
"aliases": {
"RecentlyViewed": "RecentlyViewed\\Facades\\RecentlyViewed"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}