forked from InvoicePlane/InvoicePlane
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.51 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.51 KB
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
{
"name": "invoiceplane/invoiceplane",
"version": "1.6.3-rc1",
"description": "InvoicePlane is a self-hosted open source application for managing your invoices, clients and payments",
"homepage": "https://invoiceplane.com",
"license": "MIT",
"type": "project",
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"require": {
"codeigniter/framework": "3.1.13",
"endroid/qr-code": "^4.8",
"guzzlehttp/guzzle": "^7.9",
"moneyphp/money": "^4.7",
"mpdf/mpdf": "^8.2",
"paragonie/random_compat": "^2.0",
"phpmailer/phpmailer": "^6.10",
"setasign/fpdf": "^1.8",
"smhg/sepa-qr-data": "^1.2",
"stripe/stripe-php": "^14.10",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"filp/whoops": "^2.18",
"laravel/pint": "^1.20",
"squizlabs/php_codesniffer": "^3.13",
"rector/rector": "^2.0",
"symfony/var-dumper": "^6.4"
},
"scripts": {
"check": [
"rector",
"phpcs",
"pint"
],
"rector": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/rector process"
],
"phpcs": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/phpcbf -p --standard=phpcs.xml"
],
"pint": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/pint"
]
}
}