387e45b85d
* chore(deps): bump laravel/cashier from 8.0.1 to 9.3.5 Bumps [laravel/cashier](https://github.com/laravel/cashier) from 8.0.1 to 9.3.5. - [Release notes](https://github.com/laravel/cashier/releases) - [Changelog](https://github.com/laravel/cashier/blob/9.0/CHANGELOG.md) - [Upgrade guide](https://github.com/laravel/cashier/blob/9.0/UPGRADE.md) - [Commits](https://github.com/laravel/cashier/compare/v8.0.1...v9.3.5) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
129 lines
3.9 KiB
JSON
129 lines
3.9 KiB
JSON
{
|
|
"name": "djaiss/monica",
|
|
"description": "Monica is a personal CRM.",
|
|
"license": "AGPL",
|
|
"keywords": ["prm", "crm", "social"],
|
|
"type": "project",
|
|
"require": {
|
|
"php": "^7.3",
|
|
"ext-bcmath": "*",
|
|
"ext-gd": "*",
|
|
"ext-gmp": "*",
|
|
"ext-intl": "*",
|
|
"asbiin/laravel-webauthn": "^0.5.0",
|
|
"bacon/bacon-qr-code": "^1.0",
|
|
"creativeorange/gravatar": "~1.0",
|
|
"doctrine/dbal": "^2.5",
|
|
"erusev/parsedown": "~1.7",
|
|
"fideloper/proxy": "^4.0",
|
|
"giggsey/libphonenumber-for-php": "^8.9",
|
|
"guzzlehttp/guzzle": "^6.2",
|
|
"intervention/image": "^2.3",
|
|
"jenssegers/date": "^3.3",
|
|
"lahaxearnaud/laravel-u2f": "^1.5",
|
|
"laravel/cashier": "~9.3",
|
|
"laravel/framework": "5.8.*",
|
|
"laravel/passport": "^7.2",
|
|
"laravel/socialite": "^4.0",
|
|
"laravel/tinker": "^1.0",
|
|
"league/flysystem-aws-s3-v3": "~1.0",
|
|
"league/flysystem-cached-adapter": "^1.0",
|
|
"mariuzzo/laravel-js-localization": "^1.4",
|
|
"matriphe/iso-639": "^1.0",
|
|
"moneyphp/money": "^3.1",
|
|
"monicahq/laravel-cloudflare": "^1.0",
|
|
"monicahq/laravel-sabre": "^1.1",
|
|
"ok/ipstack-client": "^1.2",
|
|
"paragonie/constant_time_encoding": "^2.2",
|
|
"pragmarx/countries-laravel": "^0.6.1",
|
|
"pragmarx/google2fa": "^5.0",
|
|
"pragmarx/google2fa-laravel": "^1.0",
|
|
"pragmarx/recovery": "^0.1.0",
|
|
"predis/predis": "^1.1",
|
|
"ralouphie/mimey": "^2.0",
|
|
"sabre/dav": "^4.0",
|
|
"sentry/sentry-laravel": "^1.0",
|
|
"stevebauman/location": "^3.0",
|
|
"symfony/translation": "^4.0",
|
|
"thecodingmachine/safe": "^0.1.15",
|
|
"vectorface/whip": "^0.3.2",
|
|
"vinkla/hashids": "^6.0",
|
|
"vluzrmos/language-detector": "^1.0"
|
|
},
|
|
"require-dev": {
|
|
"barryvdh/laravel-debugbar": "^3",
|
|
"filp/whoops": "^2.0",
|
|
"fzaninotto/faker": "^1.6",
|
|
"khanamiryan/qrcode-detector-decoder": "1.0.2",
|
|
"laravel/dusk": "^5.0",
|
|
"matthiasnoback/live-code-coverage": "^1.0",
|
|
"mockery/mockery": "^1.0",
|
|
"nunomaduro/larastan": "^0.3.15",
|
|
"phpunit/phpcov": "^6.0",
|
|
"phpunit/phpunit": "^8.0",
|
|
"psalm/plugin-laravel": "^0.4",
|
|
"roave/security-advisories": "dev-master",
|
|
"symfony/css-selector": "~4.0",
|
|
"symfony/dom-crawler": "~4.0",
|
|
"thecodingmachine/phpstan-safe-rule": "^0.1.3",
|
|
"vimeo/psalm": "^3.0"
|
|
},
|
|
"suggest": {
|
|
"ext-apcu": "*"
|
|
},
|
|
"autoload": {
|
|
"classmap": [
|
|
"database/seeds",
|
|
"database/factories"
|
|
],
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Tests\\": "tests/"
|
|
},
|
|
"files": [
|
|
"app/Helpers/helpers.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"classmap": [
|
|
"tests/TestCase.php"
|
|
]
|
|
},
|
|
"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"
|
|
],
|
|
"pre-install-cmd": [
|
|
"App\\Helpers\\ComposerScripts::preInstall"
|
|
],
|
|
"pre-update-cmd": [
|
|
"App\\Helpers\\ComposerScripts::preUpdate"
|
|
],
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover"
|
|
],
|
|
"post-update-cmd": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postUpdate"
|
|
],
|
|
"post-install-cmd": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postInstall"
|
|
]
|
|
},
|
|
"config": {
|
|
"apcu-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true,
|
|
"optimize-autoloader": true
|
|
}
|
|
}
|