-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.59 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
{
"autoload": {
"files": [
"src/config.php",
"src/utilities.php"
],
"psr-4": {
"blancks\\JsonPatchBenchmark\\": "src",
"blancks\\JsonPatchBenchmarkTests\\": "tests"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/mikemccabe/json-patch-php"
}
],
"require": {
"blancks/fast-jsonpatch-php": "dev-dev-v2",
"mikemccabe/json-patch-php": "dev-master",
"php-jsonpatch/php-jsonpatch": "^4.1",
"xp-forge/json-patch": "^2.1",
"gamringer/php-json-patch": "^1.0",
"phpunit/phpunit": "^10",
"swaggest/json-diff": "^3.11",
"remorhaz/php-json-patch": "^0.6.1"
},
"scripts": {
"blancks/fast-jsonpatch-php": "phpunit --no-configuration --test-suffix Blancks_fast_jsonpatchTest.php ./tests",
"remorhaz/php-json-patch": "phpunit --no-configuration --test-suffix Remorhaz_php_json_patchTest.php ./tests",
"mikemccabe/json-patch-php": "phpunit --no-configuration --test-suffix Mikemccabe_json_patch_phpTest.php ./tests",
"php-jsonpatch/php-jsonpatch": "phpunit --no-configuration --test-suffix Php_jsonpatch_php_jsonpatchTest.php ./tests",
"xp-forge/json-patch": "phpunit --no-configuration --test-suffix Xp_forge_json_patchTest.php ./tests",
"gamringer/php-json-patch": "phpunit --no-configuration --test-suffix Gamringer_php_json_patchTest.php ./tests",
"swaggest/json-diff": "phpunit --no-configuration --test-suffix Swaggest_json_diffTest.php ./tests"
}
}