-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
67 lines (67 loc) · 1.43 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
65
66
67
{
"name": "kalimahapps/daleel",
"description": "PHP documentation markdown and API generator",
"keywords": [
"documentation",
"api",
"markdown",
"phpdoc"
],
"homepage": "https://daleel.kalimah-apps.com/docs/",
"readme": "https://github.com/kalimahapps/daleel#readme",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Abdul Al-Hasany",
"email": "[email protected]"
}
],
"require": {
"eftec/bladeone": "^4.9",
"phpdocumentor/type-resolver": "^1.7.2",
"phpdocumentor/reflection-common": "^2.2",
"phpdocumentor/reflection-docblock": "^5.3",
"phpdocumentor/reflection": "^5.3",
"nikic/php-parser": "^4.16",
"psr/log": "^3.0",
"php": "^8.1",
"league/commonmark": "^2.4",
"symfony/console": "^6.3",
"symfony/filesystem": "^6.3",
"symfony/yaml": "^6.3",
"symfony/http-client": "^6.3",
"symfony/finder": "^6.3",
"symfony/process": "^6.3",
"scrivo/highlight.php": "v9.18.1.10"
},
"scripts": {
"test": "vendor/bin/pest --coverage"
},
"autoload": {
"psr-4": {
"Console\\": "src"
},
"classmap": [
"src"
],
"files": [
"./src/phptypes.php"
]
},
"require-dev": {
"pestphp/pest": "^2.9"
},
"config": {
"platform": {
"php": "8.1"
},
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"bin": [
"bin/daleel"
]
}