This repository has been archived by the owner on Mar 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
52 lines (52 loc) · 1.54 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/completion-worse-extension",
"type": "phpactor-extension",
"description": "Collection of completors based on Worse Reflection and the Tolerant PHP Parser",
"license": "MIT",
"authors": [
{
"name": "Daniel Leech",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ^8.0",
"phpactor/completion": "~0.4.7",
"phpactor/completion-extension": "^0.2.4",
"phpactor/reference-finder-extension": "^0.1.7",
"phpactor/source-code-filesystem-extension": "^0.1.5",
"phpactor/worse-reflection-extension": "^0.2.4"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.0",
"friendsofphp/php-cs-fixer": "^2.17",
"phpstan/phpstan": "~0.12.0",
"phpunit/phpunit": "^9.0",
"phpspec/prophecy-phpunit": "^2.0"
},
"extra": {
"branch-alias": {
"dev-master": "0.2.x-dev"
},
"phpactor.extension_class": "Phpactor\\Extension\\CompletionWorse\\CompletionWorseExtension"
},
"autoload": {
"psr-4": {
"Phpactor\\Extension\\CompletionWorse\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Phpactor\\Extension\\CompletionWorse\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"integrate": [
"./vendor/bin/phpunit",
"./vendor/bin/phpstan analyze",
"./vendor/bin/php-cs-fixer fix"
]
}
}