-
Notifications
You must be signed in to change notification settings - Fork 70
/
composer.json
73 lines (73 loc) · 2.18 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": "photoboothproject/photobooth",
"type": "project",
"license": "MIT",
"require": {
"php": "^8.2",
"ext-gd": "*",
"ext-mbstring": "*",
"ext-xml": "*",
"ext-zip": "*",
"endroid/qr-code": "^6.0",
"league/commonmark": "^2.4",
"monolog/monolog": "^3.5",
"phpmailer/phpmailer": "^6.8",
"symfony/asset": "^7.0",
"symfony/config": "^7.0",
"symfony/console": "^7.0",
"symfony/filesystem": "^7.0",
"symfony/finder": "^7.0",
"symfony/translation": "^7.0"
},
"config": {
"bin-dir": "bin",
"optimize-autoloader": true,
"sort-packages": true,
"vendor-dir": "vendor"
},
"autoload": {
"psr-4": {
"Photobooth\\": ["src/", "private/src/"]
}
},
"autoload-dev": {
"psr-4": {
"Photobooth\\Tests\\": "tests"
}
},
"scripts": {
"post-install-cmd": [
"@tools:install"
],
"post-update-cmd": [
"@tools:update"
],
"cgl": [
"tools/php-cs-fixer/vendor/bin/php-cs-fixer --diff -v fix --config=.php-cs-fixer.dist.php"
],
"cgl:ci": [
"tools/php-cs-fixer/vendor/bin/php-cs-fixer --diff -v fix --config=.php-cs-fixer.dist.php -v --dry-run"
],
"lint": [
"tools/phplint/vendor/bin/phplint"
],
"phpunit": [
"tools/phpunit/vendor/bin/phpunit"
],
"phpstan": [
"tools/phpstan/vendor/bin/phpstan analyze --configuration phpstan.neon"
],
"tools:install": [
"composer install --working-dir=tools/php-cs-fixer",
"composer install --working-dir=tools/phplint",
"composer install --working-dir=tools/phpunit",
"composer install --working-dir=tools/phpstan"
],
"tools:update": [
"composer update -w --working-dir=tools/php-cs-fixer",
"composer update -w --working-dir=tools/phplint",
"composer update -w --working-dir=tools/phpunit",
"composer update -w --working-dir=tools/phpstan"
]
}
}