-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 937 Bytes
/
Copy pathcomposer.json
File metadata and controls
38 lines (38 loc) · 937 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
29
30
31
32
33
34
35
36
37
38
{
"name": "attitude/duck-types-php",
"description": "If it walks like a duck and talks like a duck, treat it like a duck, even if it’s not — a dynamic typing for PHP inspired by Flow types.",
"type": "dev-library",
"require": {
"php": "^7.3.5||^8.0"
},
"license": "MIT",
"authors": [
{
"name": "Martin Adamko",
"email": "martinadamko.sk@gmail.com"
}
],
"autoload": {
"psr-4": {
"Duck\\Types\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Duck\\Types\\Tests\\": "tests/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/attitude/phpdoc-md"
}
],
"require-dev": {
"clean/phpdoc-md": "^0.20.0",
"phpunit/phpunit": "^9.5"
},
"scripts": {
"build-docs": "./vendor/bin/phpdoc-md"
}
}