forked from composer/satis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.81 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
{
"name": "composer/satis",
"description": "Simple Repository Generator",
"keywords": ["package", "repository", "generator", "static", "composer"],
"homepage": "https://github.com/composer/satis",
"type": "project",
"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": "*"
},
"require": {
"php": "^7.3||^8.0",
"composer/composer": "^2.1",
"symfony/console": "^4.4||^5.0",
"twig/twig": "^3.3",
"twig/html-extra": "^3.3"
},
"autoload": {
"psr-4": { "Composer\\Satis\\": "src" }
},
"require-dev": {
"ext-json": "*",
"mikey179/vfsstream": "^1.6.8",
"phpunit/phpunit": "^9.5"
},
"autoload-dev": {
"psr-4": { "Composer\\Satis\\": "tests" }
},
"extra": {
"branch-alias": {
"dev-main": "3.0-dev"
}
},
"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"
}
}