-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.46 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.46 KB
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
{
"name": "badges/poser",
"description": "Poser, add badges on your readme..",
"keywords": ["composer", "packagist", "badge", "pin"],
"homepage": "https://github.com/PUGX",
"type": "lib",
"license": "MIT",
"authors": [
{
"name": "Giulio De Donato",
"email": "[email protected]"
},
{
"name": "PUGX Community",
"homepage": "https://github.com/PUGX/badge-poser/contributors"
},
{
"name": "Shields Community",
"homepage": "https://github.com/badges/poser/contributors"
}
],
"autoload": {
"psr-4": { "PUGX\\Poser\\": "src/" }
},
"autoload-dev": {
"psr-4": { "PUGX\\Poser\\Tests\\": "tests/" }
},
"require": {
"php": "^8.1",
"ext-gd": "*",
"ext-simplexml": "*",
"cybercog/php-svg-font": "^1.0",
"kartsims/easysvg": "^2.5",
"symfony/console": "^5.0 || ^6.0 || ^7.0 || ^8.0"
},
"require-dev": {
"behat/behat": "^3.13",
"friendsofphp/php-cs-fixer": "^3.41",
"phpunit/phpunit": "^10.5 | ^11.5 | ^12.0",
"vimeo/psalm": "^6.13"
},
"config": {
"bin-dir": "bin",
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"bin": ["bin/poser"],
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}