generated from gocanto/php-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
68 lines (68 loc) · 1.53 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
65
66
67
68
{
"name": "gocanto/relay",
"type": "php-bundle",
"description": "Unify data transfer object that is framework agnostic.",
"keywords": [
"php",
"data",
"bag",
"transfer",
"object"
],
"homepage": "https://github.com/gocanto/relay",
"license": "MIT",
"authors": [
{
"name": "Gustavo Ocanto",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4",
"ext-json": "*",
"friendsofphp/php-cs-fixer": "^2.16",
"nesbot/carbon": "^2.32",
"symfony/validator": "^5.0"
},
"require-dev": {
"mockery/mockery": "^1.0.0",
"phpmd/phpmd": "^2.0.0",
"phpunit/phpunit": "^9.0.0",
"squizlabs/php_codesniffer": "^3.0.0",
"vimeo/psalm": "^3.0.0"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"Gocanto\\Relay\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Gocanto\\Relay\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"analysis": [
"./vendor/bin/psalm --output-format=compact --show-info=false"
],
"coverage": [
"php vendor/bin/phpunit --testsuite=Unit --coverage-html=public/coverage --colors=always"
],
"fix-style": [
"./vendor/bin/php-cs-fixer fix . --config=.php_cs"
],
"test": [
"php vendor/bin/phpunit --testsuite=Unit --colors=always"
]
},
"support": {
"issues": "https://github.com/gocanto/relay/issues",
"source": "https://github.com/gocanto/relay"
}
}