forked from mhujer/jms-serializer-uuid-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.46 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
{
"name": "mhujer/jms-serializer-uuid-bundle",
"type": "symfony-bundle",
"description": "Symfony integration for Uuid serializer and deserializer for JMS Serializer library",
"keywords": [
"jms",
"uuid",
"serializer",
"symfony"
],
"homepage": "https://github.com/mhujer/jms-serializer-uuid-bundle",
"license": "MIT",
"authors": [
{
"name": "Martin Hujer",
"email": "[email protected]",
"homepage": "https://www.martinhujer.cz"
}
],
"require": {
"php": "~7.4 | ~8.0",
"jms/serializer-bundle": "~3.0",
"mhujer/jms-serializer-uuid": "~3.0",
"symfony/config": "~4.4 || ~5.1",
"symfony/dependency-injection": "~4.4 || ~5.1",
"symfony/http-kernel": "~4.4 || ~5.1",
"symfony/yaml": "~4.4 || ~5.1"
},
"require-dev": {
"consistence/coding-standard": "3.10.1",
"matthiasnoback/symfony-dependency-injection-test": "4.2.1",
"php-parallel-lint/php-parallel-lint": "1.2.0",
"php-coveralls/php-coveralls": "2.4.3",
"phpunit/phpunit": "9.5.0"
},
"autoload": {
"psr-4": { "Mhujer\\JmsSerializer\\Uuid\\SymfonyBundle\\": [ "src" ] },
"classmap": [ "src" ]
},
"autoload-dev": {
"psr-4": { "Mhujer\\JmsSerializer\\Uuid\\SymfonyBundle\\": [ "tests" ] },
"classmap": [ "tests" ]
},
"scripts": {
"build": [
"@lint",
"@phpcs",
"@test"
],
"coveralls": "coveralls -v",
"lint": "parallel-lint src tests",
"phpcs": "phpcs --standard=vendor/consistence/coding-standard/Consistence/ruleset.xml src tests",
"test": "phpunit"
}
}