-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
78 lines (78 loc) · 2.33 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
71
72
73
74
75
76
77
78
{
"name": "laravel-ready/url-shortener",
"description": "Simple URL shortener for laravel apps",
"type": "library",
"license": "MIT",
"keywords": [
"url",
"laravel",
"shortener",
"url shortener"
],
"authors": [
{
"name": "Egoist",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/laravel-ready/url-shortener/issues",
"source": "https://github.com/laravel-ready/url-shortener"
},
"require": {
"php": "^8.1 || ^8.0",
"illuminate/support": "^10.3 || ^9.0 || ^8.0",
"laravel-ready/hasin": "^2.1"
},
"require-dev": {
"mockery/mockery": "^1.5.1",
"orchestra/testbench": "^v8.0.8",
"phpstan/phpstan": "^1.10.6",
"phpstan/phpstan-phpunit": "^1.3.10",
"phpstan/phpstan-deprecation-rules": "^1.1.2",
"phpstan/extension-installer": "^1.2.0",
"nunomaduro/larastan": "^2.5.1",
"pestphp/pest": "^v1.22.5",
"pestphp/pest-plugin-laravel": "^v1.4.0",
"pestphp/pest-plugin-parallel": "^v1.2.1"
},
"autoload": {
"psr-4": {
"LaravelReady\\UrlShortener\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"lint": "php-cs-fixer fix -v",
"test:coverage": "@test --coverage-php ./coverage/cov/default.cov",
"test:coverage:html": "@test --coverage-html coverage/html/default",
"test": "vendor/bin/pest --colors=always --parallel",
"test:lint": "php-cs-fixer fix -v --dry-run",
"test:styles": "vendor/bin/phpstan analyse --ansi",
"test:styles:pro": "vendor/bin/phpstan analyse --pro --fix --watch"
},
"extra": {
"laravel": {
"providers": [
"LaravelReady\\UrlShortener\\ServiceProvider"
],
"aliases": {
"UrlShortener": "LaravelReady\\UrlShortener\\Facades\\UrlShortener"
}
}
},
"minimum-stability": "stable",
"prefer-stable": true
}