-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
65 lines (65 loc) · 1.8 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
{
"name": "winter/packager",
"description": "Run Composer commands within a PHP application",
"keywords": ["packager", "composer", "php"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ben Thomson",
"email": "[email protected]",
"role": "Original author"
},
{
"name": "Winter CMS Maintainers",
"homepage": "https://wintercms.com",
"role": "Maintainer"
}
],
"scripts": {
"test": "phpunit --testdox --colors=\"auto\"",
"tests": "phpunit --testdox --colors=\"auto\"",
"coverage": "XDEBUG_MODE=coverage phpunit --testdox --colors=\"auto\" --coverage-html=\"coverage\""
},
"require": {
"php": "^8.1",
"ext-openssl": "*",
"ext-zip": "*",
"ext-zlib": "*",
"composer/composer": "^2.7.0",
"php-http/discovery": "^1.0",
"php-http/httplug": "^2.0",
"psr/http-client-implementation": "*",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"symfony/process": "^4.3.4 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"nyholm/psr7": "^1.8",
"php-http/mock-client": "^1.6.0",
"symfony/http-client": "^6.0 || ^7.0",
"phpstan/phpstan": "^1.6",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"Winter\\Packager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Winter\\Packager\\Tests\\": "tests/"
}
},
"replace": {
"bennothommo/packager": "self.version"
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
}
}