forked from realodix/urlhub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
91 lines (91 loc) · 3.2 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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "realodix/urlhub",
"description": "URL shortener web application based on the Laravel PHP Framework.",
"license": "MIT",
"type": "project",
"keywords": ["laravel", "url-shortener", "shorten-urls", "shorturl"],
"require": {
"php": "^8.1",
"blade-ui-kit/blade-icons": "^1.5",
"doctrine/dbal": "^3.5",
"embed/embed": "^4.4",
"endroid/qr-code": "^4.7",
"guzzlehttp/guzzle": "^7.3",
"hisorange/browser-detect": "^4.5",
"laravel/fortify": "^1.16",
"laravel/framework": "^10.0",
"laravel/sanctum": "^3.2",
"laravel/tinker": "^2.8",
"livewire/livewire": "^2.11",
"paragonie/random-lib": "^2.0",
"paragonie/random_compat": "^2.0",
"power-components/livewire-powergrid": "^4.0",
"spatie/laravel-permission": "^5.9",
"spatie/url": "^2.2"
},
"require-dev": {
"brianium/paratest": "^7.0",
"fakerphp/faker": "^1.21",
"laravel/dusk": "^7.6",
"mockery/mockery": "^1.5",
"nunomaduro/collision": "^7.0",
"nunomaduro/larastan": "^2.6",
"phpunit/phpunit": "^10.1",
"psalm/plugin-laravel": "^2.7",
"realodix/relax": "^1.0",
"spatie/laravel-ignition": "^2.0"
},
"suggest": {
"doctrine/dbal": "Required to rename columns and drop SQLite columns.",
"fakerphp/faker": "Required to use the eloquent factory builder.",
"friendsofphp/php-cs-fixer": "Required to fixes code to follow standards (PSR-1, PSR-2, etc).",
"guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules.",
"laravel/dusk": "Required to use browser automation and testing API.",
"laravel/tinker": "Required to use the tinker console command.",
"mockery/mockery": "Required to use mocking.",
"nunomaduro/larastan": "Required to finding errors in code without actually running it.",
"nyholm/psr7": "Required to use PSR-7 bridging features.",
"phpunit/phpunit": "Required to use assertions and run tests."
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"scripts": {
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"test": [
"./vendor/bin/phpunit"
]
}
}