Attendize/composer.json

69 lines
1.9 KiB
JSON

{
"name": "attendize/attendize",
"description": "A free and open-source event management and ticket selling application.",
"keywords": ["event management", "ticket selling", "tickets", "events"],
"license": "Attribution Assurance License",
"type": "project",
"homepage" : "https://www.attendize.com",
"require": {
"laravel/framework": "5.1.20",
"illuminate/html": "~5.0",
"milon/barcode": "dev-master",
"stripe/stripe-php": "1.*",
"iron-io/iron_mq": "2.*",
"intervention/image": "dev-master",
"nitmedia/wkhtml2pdf": "dev-master",
"maatwebsite/excel": "~2.0.0",
"dompdf/dompdf": "dev-master",
"laravel/socialite": "~2.0",
"filp/whoops": "~1.0",
"vinelab/http": "dev-master",
"mews/purifier": "~2.0",
"league/flysystem-aws-s3-v3" : "~1.0",
"maxhoffmann/parsedown-laravel": "dev-master",
"ignited/laravel-omnipay": "2.*",
"omnipay/stripe": "*",
"omnipay/paypal": "*"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1"
},
"autoload": {
"classmap": [
"database",
"app/Http/Controllers",
"app/Models",
"app/Attendize"
],
"psr-4": {
"App\\": "app/",
"Attendize\\": "app/Models"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-create-project-cmd": [
"php -r \"copy('.env.example', '.env');\"",
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
}
}