-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
51 lines (51 loc) · 1.42 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
{
"name": "simivar/reverse-print-r",
"description": "Library to reverse print_r output to PHP objects, arrays and scalar values.",
"type": "library",
"require-dev": {
"phpunit/phpunit": "^9.0",
"friendsofphp/php-cs-fixer": "^2.16",
"vimeo/psalm": "^3.9",
"infection/infection": "^0.15.3",
"ergebnis/composer-normalize": "^2.2",
"phpbench/phpbench": "@dev"
},
"autoload": {
"psr-4": {
"ReversePrintR\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Unit\\ReversePrintR\\": "tests/Unit",
"Tests\\Integration\\ReversePrintR\\": "tests/Integration"
}
},
"license": "MIT",
"authors": [
{
"name": "simivar",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.1"
},
"scripts": {
"psalm": "vendor/bin/psalm",
"infection": "vendor/bin/infection",
"test": "vendor/bin/phpunit",
"test-unit": "vendor/bin/phpunit --testsuite Unit",
"test-integration": "vendor/bin/phpunit --testsuite Integration",
"bench": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/phpbench run --report=my_report --output=my_output"
],
"qa": [
"@psalm",
"@test",
"@infection"
]
}
}