-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
52 lines (51 loc) · 1.26 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
{
"name": "phpactor/flow",
"type": "library",
"description": "Source code interpreter for Phpactor",
"license": "MIT",
"authors": [
{
"name": "Daniel Leech",
"email": "daniel@dantleech.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "git@github.com:phpactor/docblock-parser"
}
],
"require": {
"php": "^8.1",
"symfony/var-dumper": "^6.0",
"microsoft/tolerant-php-parser": "^0.1.1",
"phpactor/text-document": "^1.2",
"phpactor/name-specification": "^0.1.1",
"phpactor/docblock-parser": "0.3.x-dev"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^9.0",
"phpbench/phpbench": "^1.2"
},
"autoload": {
"psr-4": {
"Phpactor\\Flow\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phpactor\\Flow\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"integrate": [
"vendor/bin/php-cs-fixer fix",
"vendor/bin/phpstan analyse",
"vendor/bin/phpunit"
]
}
}