mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
101 lines
2.8 KiB
JSON
101 lines
2.8 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",
|
|
"anahkiasen/former": "^4.2",
|
|
"asgrim/ofxparser": "^1.2",
|
|
"davejamesmiller/laravel-breadcrumbs": "5.x",
|
|
"fideloper/proxy": "^4.0",
|
|
"hashids/hashids": "^3.0",
|
|
"intervention/image": "^2.4",
|
|
"laracasts/presenter": "^0.2.1",
|
|
"laravel/framework": "5.8.*",
|
|
"laravel/socialite": "^3.1",
|
|
"laravel/tinker": "^1.0",
|
|
"league/fractal": "^0.17.0",
|
|
"league/omnipay": "^3",
|
|
"nwidart/laravel-modules": "^4.0",
|
|
"omnipay/paypal": "^3.0",
|
|
"omnipay/stripe": "^3.0",
|
|
"predis/predis": "^1.1",
|
|
"sentry/sentry-laravel": "^1.0",
|
|
"simshaun/recurr": "^4.0",
|
|
"spatie/browsershot": "^3.29",
|
|
"superbalist/laravel-google-cloud-storage": "^2.2",
|
|
"webpatser/laravel-countries": "dev-master#75992ad",
|
|
"wildbit/postmark-php": "^2.6",
|
|
"yajra/laravel-datatables-html": "^4.0",
|
|
"yajra/laravel-datatables-oracle": "~9.0"
|
|
},
|
|
"require-dev": {
|
|
"barryvdh/laravel-debugbar": "^3.2",
|
|
"beyondcode/laravel-dump-server": "^1.0",
|
|
"filp/whoops": "^2.0",
|
|
"fzaninotto/faker": "^1.4",
|
|
"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",
|
|
"app/Constants.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 artisan key:generate --ansi"
|
|
],
|
|
"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
|
|
}
|