Files
filament-short-url/composer.json
2026-06-01 10:20:51 +02:00

52 lines
1.4 KiB
JSON

{
"$schema": "https://getcomposer.org/schema.json",
"name": "janczakb/filament-short-url",
"description": "A professional Short URL manager plugin for Filament v5 with QR code design, visit tracking, geo-IP detection, and analytics.",
"keywords": ["filament", "short-url", "qr-code", "analytics", "tracking", "laravel"],
"homepage": "https://github.com/janczakb/filament-short-url",
"license": "MIT",
"authors": [
{
"name": "Bartek Janczak",
"email": "hello@bjanczak.dev",
"role": "Developer"
}
],
"require": {
"php": "^8.3",
"filament/filament": "^5.0",
"spatie/laravel-package-tools": "^1.16",
"geoip2/geoip2": "^3.0"
},
"require-dev": {
"pestphp/pest": "^4.0",
"pestphp/pest-plugin-laravel": "^4.0",
"orchestra/testbench": "^10.0"
},
"autoload": {
"psr-4": {
"Bjanczak\\FilamentShortUrl\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bjanczak\\FilamentShortUrl\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Bjanczak\\FilamentShortUrl\\FilamentShortUrlServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}