-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
49 lines (49 loc) · 1.14 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
{
"name": "mhujer/jms-serializer-uuid",
"type": "library",
"description": "Uuid serializer and deserializer for JMS Serializer library",
"keywords": [
"jms",
"uuid",
"serializer"
],
"homepage": "https://github.com/mhujer/jms-serializer-uuid",
"license": "MIT",
"authors": [
{
"name": "Martin Hujer",
"email": "mail@martinhujer.cz",
"homepage": "https://www.martinhujer.cz"
}
],
"require": {
"php": "~8.0",
"jms/serializer": "~3.14",
"ramsey/uuid": "~3.0|~4.0"
},
"require-dev": {
"consistence-community/coding-standard": "3.11.1",
"php-parallel-lint/php-parallel-lint": "1.3.1",
"php-coveralls/php-coveralls": "2.5.2",
"phpunit/phpunit": "9.5.10"
},
"autoload": {
"psr-4": { "Mhujer\\JmsSerializer\\": [ "src" ] },
"classmap": [ "src" ]
},
"autoload-dev": {
"psr-4": { "Mhujer\\JmsSerializer\\": [ "tests" ] },
"classmap": [ "tests" ]
},
"scripts": {
"build": [
"@lint",
"@phpcs",
"@test"
],
"coveralls": "coveralls -v",
"lint": "parallel-lint src tests",
"phpcs": "phpcs --standard=vendor/consistence-community/coding-standard/Consistence/ruleset.xml src tests",
"test": "phpunit"
}
}