mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
3e77612210
* Add checks for duplicate contacts in invitations * Fixes for self updater * homebrew self updater * remove self-updater
117 lines
3.5 KiB
JSON
117 lines
3.5 KiB
JSON
{
|
|
"name": "invoiceninja/invoiceninja",
|
|
"description": "Invoices, expenses & time-tracking built with Laravel",
|
|
"keywords": [
|
|
"invoice",
|
|
"laravel"
|
|
],
|
|
"license": "Attribution Assurance License",
|
|
"authors": [
|
|
{
|
|
"name": "Hillel Coren",
|
|
"email": "hillelcoren@gmail.com"
|
|
},
|
|
{
|
|
"name": "David Bomba",
|
|
"email": "turbo124@gmail.com"
|
|
}
|
|
],
|
|
"type": "project",
|
|
"require": {
|
|
"php": ">=7.3",
|
|
"ext-json": "*",
|
|
"asgrim/ofxparser": "^1.2",
|
|
"beganovich/omnipay-checkout": "dev-master",
|
|
"cleverit/ubl_invoice": "^1.3",
|
|
"composer/composer": "^1.10",
|
|
"czproject/git-php": "^3.17",
|
|
"dacastro4/laravel-gmail": "^3.2",
|
|
"doctrine/dbal": "^2.10",
|
|
"fedeisas/laravel-mail-css-inliner": "2.3",
|
|
"fideloper/proxy": "^4.0",
|
|
"fzaninotto/faker": "^1.4",
|
|
"google/apiclient": "^2.0",
|
|
"guzzlehttp/guzzle": "^6.5",
|
|
"hashids/hashids": "^3.0",
|
|
"intervention/image": "^2.4",
|
|
"laracasts/presenter": "^0.2.1",
|
|
"laravel/framework": "^6",
|
|
"laravel/slack-notification-channel": "^2.0",
|
|
"laravel/socialite": "^4.0",
|
|
"laravel/tinker": "^1.0",
|
|
"league/flysystem-aws-s3-v3": "~1.0",
|
|
"league/flysystem-cached-adapter": "~1.0",
|
|
"league/fractal": "^0.17.0",
|
|
"league/omnipay": "^3.0",
|
|
"livewire/livewire": "^1.0",
|
|
"maennchen/zipstream-php": "^1.2",
|
|
"nwidart/laravel-modules": "^6.0",
|
|
"omnipay/paypal": "^3.0",
|
|
"omnipay/stripe": "^3.0",
|
|
"predis/predis": "^1.1",
|
|
"sentry/sentry-laravel": "^1.0",
|
|
"spatie/browsershot": "^3.29",
|
|
"staudenmeir/eloquent-has-many-deep": "^1.11",
|
|
"stripe/stripe-php": "^7.0",
|
|
"turbo124/beacon": "^0",
|
|
"webpatser/laravel-countries": "dev-master#75992ad",
|
|
"yajra/laravel-datatables-oracle": "~9.0"
|
|
},
|
|
"require-dev": {
|
|
"laravelcollective/html": "^6",
|
|
"wildbit/postmark-php": "^2.6",
|
|
"anahkiasen/former": "^4.2",
|
|
"barryvdh/laravel-debugbar": "^3.2",
|
|
"beyondcode/laravel-dump-server": "^1.0",
|
|
"darkaonline/l5-swagger": "^6.0",
|
|
"filp/whoops": "^2.0",
|
|
"laravel/dusk": "^5.0",
|
|
"mockery/mockery": "^1.0",
|
|
"nunomaduro/collision": "^2.0",
|
|
"phpunit/phpunit": "^7.0"
|
|
},
|
|
"autoload": {
|
|
"classmap": [
|
|
"database/seeds",
|
|
"database/factories"
|
|
],
|
|
"psr-4": {
|
|
"App\\": "app/"
|
|
},
|
|
"files": [
|
|
"app/Libraries/OFX.php" ]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"dont-discover": [
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-root-package-install": [
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
|
],
|
|
"post-create-project-cmd": [
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
|
|
"@php artisan key:generate",
|
|
"@php artisan storage:link"
|
|
],
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover --ansi"
|
|
]
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist",
|
|
"sort-packages": true,
|
|
"optimize-autoloader": true
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|