107 lines
3.1 KiB
JSON
Executable File
107 lines
3.1 KiB
JSON
Executable File
{
|
|
"name": "attendize/attendize",
|
|
"description": "A free and open-source event management and ticket selling application.",
|
|
"keywords": [
|
|
"event management",
|
|
"ticket selling",
|
|
"tickets",
|
|
"events"
|
|
],
|
|
"license": "AAL",
|
|
"type": "project",
|
|
"homepage": "https://www.attendize.com",
|
|
"require": {
|
|
"php": "^8.2",
|
|
"barryvdh/laravel-ide-helper": "^2.10",
|
|
"doctrine/dbal": "^3.0",
|
|
"dompdf/dompdf": "^1.0",
|
|
"filp/whoops": "^2.14",
|
|
"guzzlehttp/guzzle": "^7.3",
|
|
"guzzlehttp/psr7": "^2.2",
|
|
"illuminate/support": "^10.9",
|
|
"intervention/image": "^2.6",
|
|
"laracasts/utilities": "^3.0",
|
|
"laravel/framework": "^10.0",
|
|
"laravel/socialite": "^5.2",
|
|
"laravelcollective/html": "^6.0",
|
|
"maatwebsite/excel": "^3.1",
|
|
"maxhoffmann/parsedown-laravel": "dev-master",
|
|
"mcamara/laravel-localization": "^1.4",
|
|
"mews/purifier": "^3.4",
|
|
"milon/barcode": "*",
|
|
"nitmedia/wkhtml2pdf": "*",
|
|
"php-http/curl-client": "*",
|
|
"php-http/message": "^1.9",
|
|
"predis/predis": "^1.1",
|
|
"vinelab/http": "*",
|
|
"laravel/tinker": "^2.0",
|
|
"davejamesmiller/laravel-breadcrumbs": "^5.3",
|
|
"jenssegers/agent": "*",
|
|
"laravel/helpers": "*",
|
|
"backpack/crud": "^5.5",
|
|
"backpack/permissionmanager": "*",
|
|
"backpack/pagemanager": "*",
|
|
"backpack/settings": "*",
|
|
"spatie/laravel-ignition": "^2.0"
|
|
},
|
|
"require-dev": {
|
|
"symfony/dom-crawler": "^5.3",
|
|
"symfony/css-selector": "^5.3",
|
|
"laracasts/generators": "^2.0",
|
|
"backpack/generators": "^3.3",
|
|
"laravel/breeze": "^1.20",
|
|
"laravel/pint": "^1.0",
|
|
"laravel/sail": "^1.18",
|
|
"mockery/mockery": "^1.4.4",
|
|
"nunomaduro/collision": "^7.0",
|
|
"phpunit/phpunit": "^10.0",
|
|
"spatie/laravel-ignition": "^2.0"
|
|
},
|
|
"autoload": {
|
|
"classmap": [
|
|
"database",
|
|
"app/Http/Controllers",
|
|
"app/Models",
|
|
"app/Attendize",
|
|
"app/Services",
|
|
"app/Services/PaymentGateway"
|
|
],
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Attendize\\": "app/Models"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"classmap": [
|
|
"tests/TestCase.php"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"post-install-cmd": [
|
|
"php artisan clear-compiled"
|
|
],
|
|
"post-update-cmd": [
|
|
"php artisan clear-compiled"
|
|
],
|
|
"post-create-project-cmd": [
|
|
"php -r \"copy('.env.example', '.env');\"",
|
|
"php artisan key:generate"
|
|
]
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist",
|
|
"allow-plugins": {
|
|
"composer/installers": true,
|
|
"kylekatarnls/update-helper": true,
|
|
"php-http/discovery": true
|
|
}
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"dont-discover": [
|
|
"potsky/laravel-localization-helpers"
|
|
]
|
|
}
|
|
}
|
|
}
|