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 8
/
Copy pathcomposer.json
60 lines (60 loc) · 1.75 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
{
"name": "phpactor/completion",
"description": "Completion library for Worse Reflection",
"license": "MIT",
"authors": [
{
"name": "Daniel Leech",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ^8.0",
"phpactor/class-to-file": "~0.4.2",
"phpactor/container": "^2.0.0",
"phpactor/reference-finder": "^0.1.5",
"phpactor/source-code-filesystem": "~0.1.6",
"phpactor/text-document": "~1.2.3",
"phpactor/worse-reflection": "^0.4.8"
},
"require-dev": {
"dms/phpunit-arraysubset-asserts": "dev-master",
"ergebnis/composer-normalize": "^2.0",
"friendsofphp/php-cs-fixer": "^2.17",
"phpactor/test-utils": "~1.1.3",
"phpbench/phpbench": "^1.0.0@alpha",
"phpspec/prophecy-phpunit": "dev-master",
"phpstan/phpstan": "~0.12.0",
"phpunit/phpunit": "~9.0",
"symfony/var-dumper": "^5.2"
},
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev"
}
},
"autoload": {
"psr-4": {
"Phpactor\\Completion\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Phpactor\\Completion\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"integrate": [
"vendor/bin/php-cs-fixer fix --dry-run --allow-risky=yes",
"vendor/bin/phpstan analyse lib -c phpstan.neon",
"vendor/bin/phpunit"
],
"integrate-ci": [
"vendor/bin/php-cs-fixer fix --dry-run --allow-risky=yes",
"vendor/bin/phpstan analyse lib -c phpstan.neon",
"vendor/bin/phpunit"
]
}
}