-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathcomposer.json
73 lines (73 loc) · 2.07 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
{
"name": "emaijala/mlinvoice",
"description": "Free web-based invoicing primarily for Finnish companies",
"authors": [
{
"name": "Ere Maijala",
"email": "[email protected]"
}
],
"license": "GPL-2.0",
"config": {
"platform": {
"php": "8.0"
},
"allow-plugins": {
"codeception/c3": false
}
},
"autoload": {
"psr-4": {
"": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": ">=8.0",
"composer/semver": "3.4.3",
"components/jquery": "^3.6.0",
"doctrine/dbal": "^3.9.1",
"guzzlehttp/guzzle": "^7.9.2",
"michelf/php-markdown": "^2.0.0",
"phpseclib/phpseclib": "^3.0.42",
"ramsey/uuid": "^4.7.6",
"setasign/fpdi": "^2.6.1",
"symfony/amazon-mailer": "^5.4.40",
"symfony/google-mailer": "^5.4.40",
"symfony/mailchimp-mailer": "^5.4.40",
"symfony/mailer": "^5.4.44",
"symfony/mailgun-mailer": "^5.4.42",
"tecnickcom/tcpdf": "^6.7.6",
"twbs/bootstrap": "5.3.3"
},
"require-dev": {
"behat/mink": "1.12.0",
"dmore/chrome-mink-driver": "2.9.3",
"friendsofphp/php-cs-fixer": "^v3.64.0",
"phing/phing": "^3.0.0",
"phpunit/phpunit": "9.6.21",
"squizlabs/php_codesniffer": "^3.10.3",
"codeception/c3": "^2.9.0",
"codeception/codeception": "^5.1.2",
"codeception/module-phpbrowser": "^3.0.1",
"codeception/module-asserts": "^3.0.0",
"codeception/module-webdriver": "^3.2.2"
},
"scripts": {
"post-install-cmd": [
"cp htaccess-vendor vendor/.htaccess",
"mkdir -p node_modules; cp htaccess-vendor node_modules/.htaccess",
"[ $COMPOSER_DEV_MODE -eq 0 ] || cp vendor/codeception/c3/c3.php ."
],
"post-update-cmd": [
"@post-install-cmd"
],
"qa": [
"vendor/bin/phing qa"
]
}
}