-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 808 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 808 Bytes
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
{
"name": "bluzphp/composer-plugin",
"description": "This custom installer allows you to manage Bluz Skeleton modules with composer.",
"type": "composer-plugin",
"keywords": ["bluz", "composer"],
"homepage": "https://github.com/bluzphp/composer-plugin",
"license": "MIT",
"require": {
"php": ">=7.4",
"composer-plugin-api": "^2.0",
"symfony/filesystem": "~5.3",
"symfony/finder": "~5.3"
},
"require-dev": {
"composer/composer": "^2.0",
"composer/installers": "~1.11",
"phpunit/phpunit": "~9.5",
"squizlabs/php_codesniffer": "~3.6"
},
"autoload": {
"psr-4": {
"Bluz\\Composer\\": "src/"
}
},
"extra": {
"class": "Bluz\\Composer\\Installers\\Plugin"
}
}