-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.22 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
{
"name": "suin/marshaller",
"description": "Type-safe data mapping between JSON and a PHP class object.",
"keywords": [
"encoder",
"decoder",
"json",
"marshaller",
"unmarshaller",
"class",
"object"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "suin",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"suin/json": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.9",
"phpunit/phpunit": "^6.5",
"suin/livexample": "^1.0",
"suin/php-cs-fixer-rules": "^1.0"
},
"autoload": {
"psr-4": {
"Suin\\Marshaller\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Suin\\Marshaller\\": "tests/"
}
},
"minimum-stability": "stable",
"config": {
"sort-packages": true
},
"scripts": {
"test": "phpunit --colors=always",
"test-in-ci": "phpunit --coverage-text",
"format": "php-cs-fixer fix --ansi",
"format-preview": "php-cs-fixer fix --ansi --dry-run --diff --diff-format=udiff --verbose",
"example": "php -d auto_prepend_file=vendor/autoload.php -d xdebug.overload_var_dump=0",
"configure-commit-template": "git config --add commit.template .gitmessage"
}
}