1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/composer.json

103 lines
2.9 KiB
JSON
Raw Normal View History

2018-10-04 19:10:43 +02:00
{
"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"
}
],
2018-10-04 19:10:43 +02:00
"type": "project",
"require": {
2019-07-09 02:33:34 +02:00
"php": ">=7.3",
2019-07-29 05:59:28 +02:00
"anahkiasen/former": "^4.2",
"asgrim/ofxparser": "^1.2",
"davejamesmiller/laravel-breadcrumbs": "5.x",
2018-10-04 19:10:43 +02:00
"fideloper/proxy": "^4.0",
"hashids/hashids": "^3.0",
2019-04-28 14:23:22 +02:00
"intervention/image": "^2.4",
"laracasts/presenter": "^0.2.1",
"laravel/framework": "5.8.*",
"laravel/socialite": "^3.1",
"laravel/tinker": "^1.0",
2019-09-05 01:52:49 +02:00
"laravelcollective/html": "5.8.*",
2019-03-28 22:34:58 +01:00
"league/fractal": "^0.17.0",
2019-05-05 06:22:32 +02:00
"league/omnipay": "^3",
"nwidart/laravel-modules": "^4.0",
2019-05-05 06:22:32 +02:00
"omnipay/paypal": "^3.0",
"omnipay/stripe": "^3.0",
"predis/predis": "^1.1",
2019-04-10 04:01:28 +02:00
"sentry/sentry-laravel": "^1.0",
"simshaun/recurr": "^4.0",
2019-05-04 05:14:37 +02:00
"spatie/browsershot": "^3.29",
2019-09-05 14:42:26 +02:00
"stripe/stripe-php": "^7.0",
"superbalist/laravel-google-cloud-storage": "^2.2",
"webpatser/laravel-countries": "dev-master#75992ad",
2019-07-23 05:31:53 +02:00
"wildbit/postmark-php": "^2.6",
2019-07-25 06:51:00 +02:00
"yajra/laravel-datatables-html": "^4.0",
2019-09-05 01:52:49 +02:00
"yajra/laravel-datatables-oracle": "~9.0"
2018-10-04 19:10:43 +02:00
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.2",
2018-10-04 19:10:43 +02:00
"beyondcode/laravel-dump-server": "^1.0",
"filp/whoops": "^2.0",
"fzaninotto/faker": "^1.4",
"laravel/dusk": "^5.0",
2018-10-04 19:10:43 +02:00
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^2.0",
2019-04-26 07:57:45 +02:00
"phpunit/phpunit": "^7.0"
2018-10-04 19:10:43 +02:00
},
"autoload": {
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
2019-03-26 04:08:19 +01:00
"App\\": "app/"
},
"files": [
"app/Libraries/OFX.php",
"app/Constants.php"
]
2018-10-04 19:10:43 +02:00
},
"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
}