-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
55 lines (55 loc) · 1.34 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
{
"name": "phpactor/docblock-parser",
"type": "library",
"description": "Docblock Parser",
"license": "MIT",
"authors": [
{
"name": "Daniel Leech",
"email": "daniel@dantleech.com"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"phpbench/phpbench": "^1.1",
"ergebnis/composer-normalize": "^2.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^9.0",
"phpspec/prophecy-phpunit": "^2.0",
"symfony/var-dumper": "^5.2",
"phpstan/phpdoc-parser": "^0.4.10",
"jetbrains/phpstorm-stubs": "^2020.2"
},
"extra": {
"branch-alias": {
"dev-master": "0.3.x-dev"
}
},
"autoload": {
"psr-4": {
"Phpactor\\DocblockParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phpactor\\DocblockParser\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"integrate": [
"vendor/bin/phpunit",
"vendor/bin/php-cs-fixer fix --allow-risky=yes",
"vendor/bin/phpstan analyse"
]
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}