-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1017 Bytes
/
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
{
"name": "jigarius/phpake",
"description": "Phpake is a make-like utility built for PHP.",
"license": "GPL-3.0-only",
"version": "1.0.0",
"keywords": [],
"authors": [
{
"name": "Jigar Mehta",
"homepage": "https://jigarius.com/",
"role": "Developer"
}
],
"homepage": "https://github.com/jigarius/phpake",
"require": {
"php": ">= 8.0",
"phpdocumentor/reflection-docblock": "^5.2",
"symfony/console": "^5.3"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"drupal/coder": "^8.3",
"ergebnis/composer-normalize": "^2.28",
"phpro/grumphp": "^1.13",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Phpake\\": "src/"
},
"classmap": [
"src/Phpake.php"
]
},
"bin": [
"bin/phpake"
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp": true,
"ergebnis/composer-normalize": true
}
}
}