This repository has been archived by the owner on Nov 1, 2022. It is now read-only.
forked from doctrine/automatic-releases
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.57 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
{
"name": "doctrine/automatic-releases",
"type": "project",
"description": "Application that eases release management in the Doctrine organisation through GitHub hooks",
"license": "MIT",
"autoload": {
"psr-4": {
"Doctrine\\AutomaticReleases\\": "src"
}
},
"require": {
"php": "^7.3",
"beberlei/assert": "^3.2",
"jwage/changelog-generator": "^1.0",
"php-http/curl-client": "^2.0",
"php-http/discovery": "^1.6",
"php-http/httplug": "^2.0",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0",
"symfony/process": "^4.2",
"thecodingmachine/safe": "^0.1.16",
"zendframework/zend-diactoros": "^2.1",
"ext-tideways": "@stable"
},
"autoload-dev": {
"psr-4": {
"Doctrine\\AutomaticReleases\\Test\\Unit\\": "test/unit"
}
},
"require-dev": {
"doctrine/coding-standard": "^6.0",
"infection/infection": "^0.12.2",
"phpstan/phpstan": "^0.11.5",
"phpstan/phpstan-beberlei-assert": "^0.11.0",
"phpstan/phpstan-phpunit": "^0.11.0",
"phpstan/phpstan-strict-rules": "^0.11.0",
"phpunit/phpunit": "^8.1",
"psalm/plugin-phpunit": "^0.5.4",
"roave/no-leaks": "^1.1",
"squizlabs/php_codesniffer": "^3.4",
"thecodingmachine/phpstan-safe-rule": "^0.1.3",
"vimeo/psalm": "^3.2"
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.3.4",
"ext-tideways": "1.0.0"
}
}
}