-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
56 lines (56 loc) · 1.29 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
{
"name": "smillerdev/phpdraft",
"description": "This is a parser for API Blueprint files in PHP.",
"minimum-stability": "stable",
"license": "GPL-3.0-or-later",
"bin": ["phpdraft"],
"authors": [
{
"name": "Sean Molenaar",
"email": "smillerdev@me.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/SMillerDev/phpdraft",
"no-api": true
}
],
"require": {
"php": "^8.1",
"vanilla/garden-cli": "~4.0",
"michelf/php-markdown": "~2.0",
"lukasoppermann/http-status": "~4.0",
"ext-json": "*",
"ext-curl": "*",
"twig/twig": "^3.0",
"twig/markdown-extra": "^3.0",
"matthiasmullie/minify": "^1.3",
"rize/uri-template": "*"
},
"require-dev": {
"lunr/halo": "~0.10.0",
"phpunit/phpunit": "~10.0",
"theseer/autoload": "~1.0",
"phing/phing": "~3.0",
"phpstan/phpstan": "^1.2.0",
"phpstan/phpstan-phpunit": "^1.0.0",
"phpstan/phpstan-strict-rules": "^1.5",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-deprecation-rules": "^1.1"
},
"autoload": {
"psr-4": { "PHPDraft\\": "src/PHPDraft" }
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}