forked from phpactor/worse-reflection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.64 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
{
"name": "phpactor/worse-reflection",
"description": "Lazy AST reflector that is much worse than better",
"license": "MIT",
"authors": [
{
"name": "Daniel Leech",
"email": "daniel@dantleech.com"
}
],
"require": {
"php": "^7.3 || ^8.0",
"jetbrains/phpstorm-stubs": "*",
"microsoft/tolerant-php-parser": "^0.0.23",
"phpactor/docblock": "^0.3.4",
"phpactor/text-document": "~1.2.3",
"psr/log": "^1.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.0",
"friendsofphp/php-cs-fixer": "^2.17",
"phpactor/class-to-file": "~0.4.0",
"phpactor/test-utils": "~1.1.3",
"phpbench/phpbench": "dev-master",
"phpstan/phpstan": "~0.12.0",
"phpunit/phpunit": "^9.0",
"symfony/filesystem": "^4.3 || ^5.0",
"phpspec/prophecy-phpunit": "^2.0",
"symfony/var-dumper": "^5.2"
},
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev"
}
},
"autoload": {
"psr-4": {
"Phpactor\\WorseReflection\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Phpactor\\WorseReflection\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"integrate": [
"./vendor/bin/php-cs-fixer fix --allow-risky=yes",
"./vendor/bin/phpstan analyse lib -c phpstan.neon",
"./vendor/bin/phpunit",
"./vendor/bin/phpbench run --iterations=1",
"./tests/Smoke/smoke_test.php --limit=100"
]
}
}