-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 1.28 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
{
"name": "json-mapper/symfony-bundle",
"description": "The JsonMapper bundle for Symfony",
"keywords": [
"json",
"mapper",
"JsonMapper",
"middleware",
"laravel"
],
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"json-mapper/json-mapper": "^2.0",
"php": "^7.2 || ^8.0",
"symfony/dependency-injection": "^4.4 | ^5.0 | ^6.0",
"symfony/config": "^4.4 | ^5.0 | ^6.0",
"symfony/http-kernel": "^4.4 | ^5.4.20 | ^6.0"
},
"autoload": {
"psr-4": {
"JsonMapper\\SymfonyBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JsonMapper\\SymfonyBundle\\Tests\\": "tests/"
}
},
"scripts": {
"phpcs": "phpcs --standard=PSR12 src tests",
"phpcbf": "phpcbf --standard=PSR12 src tests",
"phpstan": "phpstan analyse",
"unit-tests": "phpunit --testsuite unit --testdox --coverage-clover=build/logs/clover-unit-tests.xml"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^0.12.19",
"php-coveralls/php-coveralls": "^2.4",
"phpunit/phpunit": "^8.0 || ^9.0",
"guzzlehttp/guzzle": "^6.5 || ^7.0"
}
}