319c111bd5
To execute PHP scripts, you can use @php which will automatically resolve to whatever php process is currently being used.
65 lines
1.7 KiB
JSON
65 lines
1.7 KiB
JSON
{
|
|
"name": "djaiss/monica",
|
|
"description": "",
|
|
"license": "MIT",
|
|
"type": "project",
|
|
"require": {
|
|
"php": ">=7.0",
|
|
"laravel/framework": "5.4.*",
|
|
"barryvdh/laravel-debugbar": "^2.2",
|
|
"jenssegers/date": "^3.2",
|
|
"ext-intl": "*",
|
|
"martinjoiner/ordinal-number": "^0.2.0",
|
|
"predis/predis": "^1.1",
|
|
"guzzlehttp/guzzle": "^6.2",
|
|
"fzaninotto/faker": "^1.6",
|
|
"doctrine/dbal": "^2.5",
|
|
"laravel/socialite": "^3.0",
|
|
"intervention/image": "^2.3",
|
|
"sabre/vobject": "^4.1",
|
|
"erusev/parsedown": "~1.6",
|
|
"laravel/cashier": "~7.0",
|
|
"roave/security-advisories": "dev-master",
|
|
"laravel/dusk": "^1.1"
|
|
},
|
|
"require-dev": {
|
|
"mockery/mockery": "0.9.*",
|
|
"phpunit/phpunit": "~5.0",
|
|
"symfony/css-selector": "2.8.*|3.0.*",
|
|
"symfony/dom-crawler": "2.8.*|3.0.*"
|
|
},
|
|
"autoload": {
|
|
"classmap": [
|
|
"database"
|
|
],
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"classmap": [
|
|
"tests/TestCase.php"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"post-root-package-install": [
|
|
"@php -r \"copy('.env.example', '.env');\""
|
|
],
|
|
"post-create-project-cmd": [
|
|
"@php artisan key:generate"
|
|
],
|
|
"post-install-cmd": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postInstall",
|
|
"@php artisan optimize"
|
|
],
|
|
"post-update-cmd": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
|
|
"@php artisan optimize"
|
|
]
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist"
|
|
}
|
|
}
|