mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
121 lines
3.6 KiB
JSON
121 lines
3.6 KiB
JSON
{
|
|
"name": "invoiceninja/invoiceninja",
|
|
"description": "Invoices, expenses & time-tracking built with Laravel",
|
|
"keywords": [
|
|
"invoice",
|
|
"laravel",
|
|
"invoicing",
|
|
"time tracking",
|
|
"expenses",
|
|
"CRM",
|
|
"Credit card billing",
|
|
"projects"
|
|
],
|
|
"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",
|
|
"checkout/checkout-sdk-php": "^1.0",
|
|
"authorizenet/authorizenet": "^2.0",
|
|
"cleverit/ubl_invoice": "^1.3",
|
|
"composer/composer": "^1.10",
|
|
"czproject/git-php": "^3.17",
|
|
"turbo124/laravel-gmail": "^5.0",
|
|
"doctrine/dbal": "^2.10",
|
|
"fedeisas/laravel-mail-css-inliner": "^3",
|
|
"fideloper/proxy": "^4.2",
|
|
"fzaninotto/faker": "^1.4",
|
|
"google/apiclient": "^2.7",
|
|
"guzzlehttp/guzzle": "^7.0.1",
|
|
"hashids/hashids": "^3.0",
|
|
"intervention/image": "^2.5",
|
|
"laracasts/presenter": "^0.2.1",
|
|
"laravel/framework": "^8.0",
|
|
"laravel/slack-notification-channel": "^2.2",
|
|
"laravel/socialite": "^5",
|
|
"laravel/tinker": "^2.0",
|
|
"league/flysystem-aws-s3-v3": "~1.0",
|
|
"league/flysystem-cached-adapter": "^1.1",
|
|
"league/fractal": "^0.17.0",
|
|
"league/omnipay": "^3.0",
|
|
"livewire/livewire": "^1.3",
|
|
"maennchen/zipstream-php": "^1.2",
|
|
"nwidart/laravel-modules": "^6.0",
|
|
"omnipay/paypal": "^3.0",
|
|
"predis/predis": "^1.1",
|
|
"sentry/sentry-laravel": "^2",
|
|
"spatie/browsershot": "^3.37",
|
|
"staudenmeir/eloquent-has-many-deep": "^1.11",
|
|
"stripe/stripe-php": "^7.50",
|
|
"turbo124/beacon": "^1",
|
|
"webpatser/laravel-countries": "dev-master#75992ad",
|
|
"laravel/ui": "^3.0"
|
|
},
|
|
"require-dev": {
|
|
"anahkiasen/former": "^4.2",
|
|
"barryvdh/laravel-debugbar": "^3.4",
|
|
"brianium/paratest": "^5.0",
|
|
"darkaonline/l5-swagger": "^8.0",
|
|
"facade/ignition": "^2.3.6",
|
|
"filp/whoops": "^2.7",
|
|
"fzaninotto/faker": "^1.9.1",
|
|
"mockery/mockery": "^1.3.1",
|
|
"nunomaduro/collision": "^5.0",
|
|
"phpunit/phpunit": "^9.0",
|
|
"wildbit/postmark-php": "^4.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Database\\Factories\\": "database/factories/",
|
|
"Database\\Seeders\\": "database/seeders/"
|
|
},
|
|
"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
|
|
}
|