-
-
Notifications
You must be signed in to change notification settings - Fork 93
/
composer.json
133 lines (133 loc) · 4.14 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "pugx/badge-poser",
"description": "Poser, add badges on your readme, such as downloads number or latest version.",
"keywords": ["composer", "packagist", "badge", "pin"],
"homepage": "https://poser.pugx.org",
"type": "symfony-project",
"license": "MIT",
"authors": [
{
"name": "Giulio De Donato",
"email": "[email protected]"
},
{
"name": "PUGX Community",
"homepage": "https://github.com/PUGX/badge-poser/contributors"
}
],
"minimum-stability": "beta",
"require": {
"php": "^8.3",
"ext-gd": "*",
"ext-iconv": "*",
"ext-json": "*",
"badges/poser": "^3.1",
"bitbucket/client": "^4.7",
"knplabs/github-api": "^3.15",
"knplabs/packagist-api": "^2.1",
"m4tthumphrey/php-gitlab-api": "^11.14",
"predis/predis": "^2.2",
"sentry/sentry-symfony": "^5.0",
"snc/redis-bundle": "^4.7",
"symfony/asset": "^7.1",
"symfony/console": "^7.1",
"symfony/flex": "^2.4",
"symfony/framework-bundle": "^7.1",
"symfony/http-client": "^7.1",
"symfony/runtime": "^7.1",
"symfony/webpack-encore-bundle": "^2.2",
"symfony/yaml": "^7.1"
},
"require-dev": {
"dg/bypass-finals": "^1.4",
"friendsofphp/php-cs-fixer": "^3.13",
"jangregor/phpstan-prophecy": "^1.0",
"phpspec/prophecy-phpunit": "^2.1",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-phpunit": "^1.2",
"phpstan/phpstan-symfony": "^1.2",
"phpunit/phpunit": "^9.5",
"roave/security-advisories": "dev-latest",
"symfony/browser-kit": "^7.1",
"symfony/debug-bundle": "^7.1",
"symfony/dotenv": "^7.1",
"symfony/monolog-bundle": "^3.8",
"symfony/phpunit-bridge": "^7.1",
"symfony/stopwatch": "^7.1",
"symfony/web-profiler-bundle": "^7.1"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"ocramius/package-versions": true,
"php-http/discovery": true,
"phpstan/extension-installer": true,
"symfony/flex": true,
"symfony/runtime": true
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-iconv": "*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php82": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"docker:build": "docker build -t pugx/badge-poser:4.1 -f .circleci/images/Dockerfile .",
"docker:push": "docker push pugx/badge-poser:4.1",
"test": "bin/phpunit",
"test-coverage-no-colors": "bin/phpunit --colors=never --coverage-text",
"test-coverage": "bin/phpunit --coverage-text",
"php-cs-fixer": "vendor/bin/php-cs-fixer fix -v",
"phpstan": "vendor/bin/phpstan analyse"
},
"conflict": {
"symfony/symfony": "*",
"symfony/translation-contracts": ">=3.0"
},
"extra": {
"symfony": {
"id": "01C6YZAVV83WQGHCHEWX2SA6KC",
"allow-contrib": false,
"require": "7.1.*"
},
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"funding": [
{
"type": "paypal",
"url": "https://paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=ETT4JRJARLTSC"
}
]
}