-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·145 lines (145 loc) · 4.55 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"type": "project",
"require": {
"php": "^7.3|^8.0",
"acelle/cashier": "dev-master",
"amrshawky/laravel-currency": "^5.0",
"aws/aws-php-sns-message-validator": "^1.1",
"aws/aws-sdk-php": "^3.19",
"braintree/braintree_php": "^3.22",
"coinpaymentsnet/coinpayments-php": "^1.0",
"doctrine/dbal": "^2.10",
"dompdf/dompdf": "^1.1",
"facade/ignition": "^2.11",
"facebook/php-ads-sdk": "^11.0",
"filp/whoops": "^2.14",
"galbar/jsonpath": "^1.2",
"guzzlehttp/guzzle": "^7.0.1",
"guzzlehttp/psr7": "^1.3",
"intervention/image": "^2.7",
"kriswallsmith/buzz": "^1.2",
"kub-at/php-simple-html-dom-parser": "^1.9",
"kutia-software-company/larafirebase": "^1.3",
"laravel/framework": "^8.0",
"laravel/helpers": "^1.4",
"laravel/tinker": "^2.0",
"laravel/ui": "^3.4",
"lawepham/geoip": "^1.6",
"league/csv": "~9.6.2",
"league/pipeline": "^1.0",
"louis/log-viewer": "^1.2.4",
"louis/sendgrid": "dev-master",
"louis/spfcheck": "1.1.8",
"maatwebsite/excel": "^3.1",
"mailgun/mailgun-php": "^3.5",
"mews/purifier": "^3.2",
"nyholm/psr7": "^1.4",
"paypal/paypal-checkout-sdk": "1.0.1",
"php-http/client-common": "~2.3",
"php-http/curl-client": "~2.0",
"php-http/guzzle7-adapter": "^1.0",
"php-http/httplug": "~2.2",
"php-http/message": "^1.3",
"rdok/elasticemail-php": "^2.2",
"rmccue/requests": "^1.8",
"sendgrid/sendgrid": "^5.0",
"sendgrid/smtpapi": "^0.5.0",
"soundasleep/html2text": "dev-master",
"sparkpost/sparkpost": "^2.1",
"spatie/laravel-sitemap": "^6.2",
"stripe/stripe-php": "^7.125",
"swiftmailer/swiftmailer": "~6.0",
"symfony/yaml": "^4.4",
"twig/twig": "^3.0"
},
"require-dev": {
"doctrine/instantiator": "^1.3.1",
"fideloper/proxy": "^4.0",
"mockery/mockery": "^1.0",
"phpunit/php-code-coverage": "^9.0",
"phpunit/phpunit": "^9.5",
"sebastian/global-state": "^5.0"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"Acelle\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"app/Helpers/helpers.php",
"app/Helpers/namespaced_helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"platform-check": false,
"allow-plugins": {
"php-http/discovery": true
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "louis/sendgrid",
"version": "dev-master",
"source": {
"url": "https://github.com/louisitvn/sendgrid",
"type": "git",
"reference": "master"
},
"autoload": {
"psr-0" : {
"Acelle\\Extra": "src"
}
},
"require" : {
"guzzlehttp/psr7": "^1.4"
}
}
},
{
"type": "vcs",
"url": "https://github.com/louisitvn/log-viewer"
}, {
"type": "vcs",
"url": "https://github.com/luanpm88/lawepham-geoip"
}, {
"type": "vcs",
"url": "https://github.com/luanpm88/acelle-cashier"
}, {
"type": "vcs",
"url" : "https://github.com/louisitvn/PHP-SPF-Check"
}, {
"type": "vcs",
"url": "https://github.com/luanpm88/aws-whitelabel"
}
]
}