forked from ladybirdweb/agora-invoicing-community
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
92 lines (90 loc) · 2.98 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"type": "project",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/limenet/mailchimp-api-v3.git"
}
],
"require": {
"php": ">=7.2",
"anhskohbo/no-captcha": "^3.1",
"arcanedev/log-viewer": "^5.2",
"barryvdh/laravel-dompdf": "^0.8.5",
"bugsnag/bugsnag-laravel": "^2.17.1",
"darryldecode/cart": "dev-master",
"devio/pipedrive": "^2.4.2",
"ezyang/htmlpurifier": "^4.12",
"geoip2/geoip2": "^2.10.0",
"graham-campbell/markdown": "^11.1",
"laravel/framework": "^6.0",
"laravel/tinker": "~2.1.0",
"laravelcollective/html": "6.0.3",
"monolog/monolog": "~2.0.2",
"pacely/mailchimp-apiv3": "dev-master#22daa0f3f312a33a388c543a0e3866b15d3f053f",
"php-mock/php-mock": "^2.1.2",
"pion/laravel-chunk-upload": "^1.3",
"rachidlaasri/laravel-installer": "^4.0.2",
"razorpay/razorpay": "^2.5",
"shvetsgroup/laravel-email-database-log": "^1.3",
"spatie/laravel-activitylog": "^3.9.1",
"spatie/laravel-referer": "^1.5",
"symfony/polyfill-iconv": "^1.13.1",
"thomaswelton/laravel-gravatar": "~1.2.0",
"torann/currency": "^1.0.16",
"torann/geoip": "^1.1.0",
"yajra/laravel-datatables": "^1.0"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.4",
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/php-code-coverage": "^6.0",
"phpunit/phpunit": "~7.0",
"squizlabs/php_codesniffer": "3.2.2"
},
"autoload": {
"files": [
"app/Http/helpers.php"
],
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"filter-test":"php vendor/phpunit/phpunit/phpunit --colors=always --filter",
"all-test":"php vendor/phpunit/phpunit/phpunit",
"all-unit-test":"php vendor/phpunit/phpunit/phpunit --testsuite Unit",
"backend-test":"php vendor/phpunit/phpunit/phpunit --colors=always --testsuite backend",
"group-test":"php vendor/phpunit/phpunit/phpunit --colors=always --group",
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-install-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postInstall"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
}
}