-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
78 lines (78 loc) · 2.22 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
{
"name": "shyim/danger-php",
"description": "Port of danger to PHP",
"type": "project",
"bin": [
"bin/danger"
],
"autoload": {
"psr-4": {
"Danger\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Danger\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"ext-mbstring": "*",
"ext-ctype": "*",
"ext-intl": "*",
"symfony/console": "^7.1",
"symfony/dependency-injection": "^7.1",
"symfony/filesystem": "^7.1",
"symfony/process": "^7.1",
"knplabs/github-api": "^3.15",
"symfony/config": "^7.1",
"symfony/http-client": "^7.1",
"nyholm/psr7": "^1.8",
"symfony/finder": "^7.1",
"m4tthumphrey/php-gitlab-api": "^11.14"
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-intl-grapheme": "*",
"symfony/polyfill-intl-normalizer": "*",
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php82": "*"
},
"license": "mit",
"authors": [
{
"name": "Soner Sayakci",
"email": "[email protected]"
}
],
"require-dev": {
"friendsofphp/php-cs-fixer": "dev-master",
"phpunit/phpunit": "^11.4",
"phpstan/phpstan": "^1.12.7",
"phpstan/phpstan-phpunit": "^1.4.0",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan-deprecation-rules": "^1.2.1",
"phpstan/phpstan-strict-rules": "^1.6.1",
"infection/infection": "^0.29.8"
},
"scripts": {
"phpstan": "phpstan analyse",
"fix-code-style": "php-cs-fixer fix",
"build": [
"curl -Ls -o box.phar https://github.com/humbug/box/releases/download/4.6.1/box.phar",
"composer install --no-dev",
"php box.phar compile"
]
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"infection/extension-installer": true,
"php-http/discovery": true
}
}
}