forked from composer/satis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
88 lines (88 loc) · 2.32 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
{
"name": "composer/satis",
"description": "Simple Repository Generator",
"keywords": [
"package",
"repository",
"generator",
"static",
"composer"
],
"homepage": "https://github.com/composer/satis",
"type": "composer-plugin",
"license": "MIT",
"authors": [
{
"name": "Jordi Boggiano",
"email": "j.boggiano@seld.be",
"homepage": "https://seld.be"
},
{
"name": "Nils Adermann",
"email": "naderman@naderman.de",
"homepage": "https://www.naderman.de"
},
{
"name": "Rob Bast",
"email": "rob.bast@gmail.com",
"homepage": "https://robbast.nl"
}
],
"support": {
"issues": "https://github.com/composer/satis",
"source": "https://github.com/composer/satis",
"forum": "https://gitter.com/composer/satis",
"irc": "irc://freenode.net/composer"
},
"bin": [
"bin/satis"
],
"replace": {
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*"
},
"require": {
"php": "^8.1",
"ext-zip": "*",
"composer/composer": "^2.7.7",
"composer-plugin-api": "^2.3.0",
"symfony/console": "^7.1.3",
"twig/twig": "^3.11.0",
"twig/html-extra": "^3.11.0"
},
"autoload": {
"psr-4": {
"Composer\\Satis\\": "src"
}
},
"require-dev": {
"ext-json": "*",
"mikey179/vfsstream": "^1.6.11",
"phpunit/phpunit": "^9.6.19"
},
"autoload-dev": {
"psr-4": {
"Composer\\Satis\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-main": "3.0-dev"
},
"class": "Composer\\Satis\\Plugin\\SatisPlugin"
},
"config": {
"allow-plugins": {
"composer/satis": true
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"phpstan": "tools/phpstan/vendor/bin/phpstan",
"php-cs-fixer": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --dry-run --diff",
"php-cs-fixer-fix": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix"
}
}