1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-19 16:01:34 +02:00
invoiceninja/composer.json
2022-07-06 17:52:50 +10:00

215 lines
7.0 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"
}
],
"require": {
"php": ">=7.3.0",
"ext-gd": "*",
"ext-gmp": "*",
"ext-json": "*",
"ext-zip": "*",
"abdala/omnipay-pagseguro": "0.2",
"agmscode/omnipay-agms": "~1.0",
"anahkiasen/former": "4.*",
"andreas22/omnipay-fasapay": "1.*",
"asgrim/ofxparser": "^1.1",
"bacon/bacon-qr-code": "^1.0",
"barracudanetworks/archivestream-php": "^1.0",
"barryvdh/laravel-cors": "^1.0.6",
"barryvdh/laravel-debugbar": "~3.6.1",
"barryvdh/laravel-ide-helper": "~2.7",
"bramdevries/omnipay-paymill": "^1.0",
"cardgate/omnipay-cardgate": "~2.0",
"cerdic/css-tidy": "~v1.5",
"chumper/datatable": "dev-laravel6-support",
"cleverit/ubl_invoice": "1.*",
"codedge/laravel-selfupdater": "2.3.0",
"collizo4sky/omnipay-wepay": "dev-address-fix#942f3e0",
"delatbabel/omnipay-fatzebra": "dev-master",
"dercoder/omnipay-ecopayz": "~1.0",
"dercoder/omnipay-paysafecard": "dev-master",
"digitickets/omnipay-barclays-epdq": "~3.0",
"digitickets/omnipay-datacash": "~3.0",
"digitickets/omnipay-gocardlessv2": "dev-payment-fix",
"digitickets/omnipay-realex": "~5.0",
"doctrine/dbal": "2.6.x",
"dompdf/dompdf": "^2.0",
"ezyang/htmlpurifier": "~v4.7",
"fotografde/omnipay-checkoutcom": "~2.0",
"fruitcakestudio/omnipay-sisow": "~2.0",
"fzaninotto/faker": "^1.5",
"google/apiclient": "^2.0",
"guzzlehttp/guzzle": "^6.5",
"guzzlehttp/psr7": "1.8.5",
"intervention/image": "dev-master",
"jaybizzle/laravel-crawler-detect": "1.*",
"jlapp/swaggervel": "master-dev",
"jonnyw/php-phantomjs": "dev-fixes",
"justinbusschau/omnipay-secpay": "~2.0",
"laracasts/presenter": "dev-master",
"laravel/framework": "^6.20",
"laravel/helpers": "^1.4",
"laravel/legacy-encrypter": "^1.0",
"laravel/socialite": "~4.4.1",
"laravel/tinker": "^1.0",
"laravelcollective/html": "^6.2",
"league/csv": "^9.1",
"league/flysystem-aws-s3-v3": "~1.0",
"league/flysystem-rackspace": "~1.0",
"league/fractal": "0.13.*",
"lokielse/omnipay-alipay": "~1.4",
"maatwebsite/excel": "dev-php-fix",
"meebio/omnipay-creditcall": "dev-master",
"meebio/omnipay-secure-trading": "dev-master",
"mfauveau/omnipay-pacnet": "~2.0",
"mpdf/mpdf": "^8.0",
"nesbot/carbon": "^2.0",
"nwidart/laravel-modules": "2.0.*",
"omnipay/authorizenet": "dev-solution-id as 2.5.0",
"omnipay/bitpay": "dev-master",
"omnipay/braintree": "^1.1",
"omnipay/common": "2.5.2",
"omnipay/firstdata": "^2.4",
"omnipay/gocardless": "dev-master",
"omnipay/mollie": "3.*",
"omnipay/omnipay": "~2.3",
"omnipay/payfast": "~2.0",
"omnipay/stripe": "~2.0",
"patricktalmadge/bootstrapper": "5.12.x",
"pragmarx/google2fa-laravel": "0.1.4",
"predis/predis": "^1.1",
"simshaun/recurr": "dev-master",
"softcommerce/omnipay-paytrace": "~1.0",
"stripe/stripe-php": "^7",
"superbalist/laravel-google-cloud-storage": "^2.2",
"symfony/css-selector": "~3.1",
"therobfonz/laravel-mandrill-driver": "~1.0",
"turbo124/laravel-push-notification": "dev-master",
"vemcogroup/laravel-sparkpost-driver": "~2.0",
"vink/omnipay-komoju": "~1.0",
"webpatser/laravel-countries": "dev-master#75992ad",
"wepay/php-sdk": "^0.2",
"wildbit/postmark-php": "^2.5"
},
"require-dev": {
"symfony/dom-crawler": "~3.1",
"codeception/c3": "2.*",
"codeception/codeception": "2.*",
"phpspec/phpspec": "~6.1",
"phpunit/phpunit": "~5.7"
},
"autoload": {
"classmap": [
"app/Console/Commands",
"app/Libraries",
"app/Http/Controllers",
"app/Models",
"app/Ninja",
"app/Ninja/Repositories",
"database"
],
"psr-4": {
"App\\": "app/",
"Modules\\": "Modules/"
},
"files": [
"app/Libraries/lib_autolink.php",
"app/Libraries/OFX.php"
]
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-install-cmd": [
"rm bootstrap/cache/compiled.php || true",
"php artisan view:clear",
"php artisan clear-compiled"
],
"post-update-cmd": [
"rm bootstrap/cache/compiled.php || true",
"php artisan view:clear",
"php artisan clear-compiled"
],
"post-create-project-cmd": [
"php -r \"copy('.env.example', '.env');\"",
"php artisan key:generate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
]
},
"replace": {
"alfaproject/omnipay-skrill": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"codeception/c3": true
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/hillelcoren/l5-google-cloud-storage"
},
{
"type": "vcs",
"url": "https://github.com/hillelcoren/omnipay-wepay"
},
{
"type": "vcs",
"url": "https://github.com/hillelcoren/omnipay-gocardlessv2"
},
{
"type": "vcs",
"url": "https://github.com/turbo124/chumper-datatable"
},
{
"type": "vcs",
"url": "https://github.com/turbo124/php-phantomjs"
},
{
"type": "vcs",
"url": "https://github.com/davidbankes/omnipay-firstdata.git"
},
{
"type": "vcs",
"url": "https://github.com/hillelcoren/omnipay-authorizenet"
},
{
"type": "vcs",
"url": "https://github.com/turbo124/omnipay-common"
},
{
"type": "vcs",
"url": "https://github.com/turbo124/laravel-push-notification"
},
{
"type": "vcs",
"url": "https://github.com/turbo124/NotificationPusher"
},
{
"type": "vcs",
"url": "https://github.com/turbo124/Laravel-Excel"
}
]
}