-
Notifications
You must be signed in to change notification settings - Fork 166
/
Copy pathcomposer.json
94 lines (94 loc) · 2.73 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
{
"name": "joindin/joindin-api",
"description": "The API-backend that powers joind.in",
"keywords": [
"joind.in",
"events",
"talks",
"speaking",
"feedback"
],
"homepage": "https://api.joind.in",
"license": "BSD-3-Clause",
"require": {
"php": "^8.3",
"ext-curl": "*",
"ext-filter": "*",
"ext-gd": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"guzzlehttp/guzzle": "^7.8.1",
"guzzlehttp/oauth-subscriber": "^0.6",
"michelf/php-markdown": "^2",
"pimple/pimple": "^3.5",
"psr/container": "^2.0.2",
"swiftmailer/swiftmailer": "^6.3",
"teapot/status-code": "^2.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.54",
"infection/infection": "^0.27.11",
"jangregor/phpstan-prophecy": "^1.0.2",
"maglnet/composer-require-checker": "^4.11",
"php-mock/php-mock-phpunit": "^2.10.0",
"phpspec/prophecy": "^1.19",
"phpspec/prophecy-phpunit": "^2.2",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan": "^1.10.67",
"phpstan/phpstan-phpunit": "1.3.12",
"phpunit/phpunit": "^9.6.19",
"roave/security-advisories": "dev-latest"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"Joindin\\Api\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Joindin\\Api\\Test\\": "tests/"
}
},
"scripts": {
"check": [
"mkdir -p build/logs",
"@cs",
"@stan",
"@require-checker",
"@security",
"@coverage"
],
"coverage": [
"phpunit --dump-xdebug-filter=build/xdebug-filter.php",
"sed -i 's/XDEBUG_PATH_WHITELIST/XDEBUG_PATH_INCLUDE/g' build/xdebug-filter.php",
"phpunit --coverage-clover=build/logs/clover.xml --coverage-text --prepend=build/xdebug-filter.php"
],
"cs": "php-cs-fixer fix --diff --verbose",
"infection": "infection --ignore-msi-with-no-mutations --min-covered-msi=71 --min-msi=19",
"require-checker": "composer-require-checker --config-file=composer-require-checker.json",
"security": "security-checker security:check composer.lock",
"stan": "phpstan analyze --configuration=phpstan.neon",
"stan-baseline": [
"echo '' > phpstan-baseline.neon",
"phpstan analyze --configuration phpstan.neon --error-format baselineNeon > phpstan-baseline.neon || true"
],
"test": "phpunit"
},
"support": {
"issues": "https://github.com/joindin/joindin-api/issues",
"irc": "irc://freenet/#joindin",
"source": "https://github.com/joindin/joindin-api"
},
"type": "project"
}