forked from JsonMapper/JsonMapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 2.04 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
61
62
63
64
{
"name": "json-mapper/json-mapper",
"description": "Map JSON structures to PHP classes",
"keywords": [
"json",
"mapper",
"JsonMapper",
"middleware"
],
"homepage": "https://jsonmapper.net",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": "^7.1 || ^8.0",
"ext-json": "*",
"myclabs/php-enum": "^1.7",
"nikic/php-parser": "^4.13",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"psr/simple-cache": "^1.0",
"symfony/polyfill-php73": "^1.18"
},
"require-dev": {
"guzzlehttp/guzzle": "^6.5 || ^7.0",
"php-coveralls/php-coveralls": "^2.4",
"phpstan/phpstan": "^0.12.14",
"phpstan/phpstan-phpunit": "^0.12.17",
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.0",
"squizlabs/php_codesniffer": "^3.5",
"symfony/console": "^2.1 || ^3.0 || ^4.0 || ^5.0",
"vimeo/psalm": "^4.10"
},
"autoload": {
"psr-4": {
"JsonMapper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JsonMapper\\Tests\\": "tests/"
}
},
"scripts": {
"phpcs": "phpcs src tests",
"phpcbf": "phpcbf src tests",
"phpstan": "phpstan analyse",
"psalm": "psalm",
"unit-tests": "phpunit --testsuite unit --testdox --coverage-clover=build/logs/clover-unit-tests.xml",
"integration-tests": "phpunit --testsuite integration --testdox --coverage-clover=build/logs/clover-integration-tests.xml",
"benchmarks": "phpbench run tests/benchmark --report=default"
},
"suggest": {
"json-mapper/laravel-package": "Use JsonMapper directly with Laravel",
"json-mapper/symfony-bundle": "Use JsonMapper directly with Symfony"
},
"support": {
"issues": "https://github.com/JsonMapper/JsonMapper/issues",
"source": "https://github.com/JsonMapper/JsonMapper",
"docs": "https://jsonmapper.net"
},
"config": {
"sort-packages": true
}
}