-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
64 lines (64 loc) · 1.54 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
{
"name": "heyaikeedo/composer",
"description": "Aikeedo Composer plugin to register custom installer for Aikeedo plugins/themese etc.",
"keywords": [
"composer",
"plugin",
"installer",
"aikeedo",
"heyaikeedo"
],
"type": "composer-plugin",
"license": "MIT",
"authors": [
{
"name": "Aikeedo Team",
"email": "hey@aikeedo.com"
}
],
"extra": {
"class": "Aikeedo\\Composer\\Plugin"
},
"require": {
"php": "^8.2",
"composer-plugin-api": "^2.0"
},
"require-dev": {
"composer/composer": "^2.3",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.8",
"squizlabs/php_codesniffer": "^3.7",
"phpmd/phpmd": "^2.13",
"phpcompatibility/php-compatibility": "^9.3"
},
"autoload": {
"psr-4": {
"Aikeedo\\Composer\\": "src/"
},
"exclude-from-classmap": [
"/tests/"
]
},
"autoload-dev": {
"psr-4": {
"Aikeedo\\Composer\\Tests\\": "tests/"
}
},
"scripts": {
"phpstan": "phpstan analyse",
"phpcs": "phpcs",
"phpcbf": "phpcbf -v",
"phpmd": "phpmd src ansi phpmd.xml --suffixes=php",
"unit-test": "phpunit",
"code-coverage": "phpunit --coverage-html coverage",
"analyse": [
"@phpstan",
"@phpcs",
"@phpmd",
"@unit-test"
],
"fix": [
"@phpcbf"
]
}
}