-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
74 lines (74 loc) · 2.31 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
69
70
71
72
73
74
{
"name": "honeybee/trellis",
"type": "library",
"description": "Library for generating entities, that enforce data validity according to a specific schema.",
"keywords": [ "entity", "validation", "dto" ],
"homepage": "https://github.com/honeybee/trellis",
"license": "MPL-2.0",
"authors": [
{
"name": "Thorsten Schmitt-Rink",
"email": "[email protected]",
"homepage": "https://github.com/shrink0r",
"role": "Developer"
},
{
"name": "Steffen Gransow",
"email": "[email protected]",
"homepage": "https://github.com/graste",
"role": "Developer"
},
{
"name": "Hasham Ahmad",
"email": "[email protected]",
"homepage": "https://github.com/MrHash",
"role": "Developer"
},
{
"name": "Igor Pellegrini",
"homepage": "https://github.com/Pictor13",
"role": "Developer"
},
{
"name": "Honeybee Contributors",
"homepage": "https://github.com/honeybee/honeybee/graphs/contributors"
}
],
"prefer-stable": true,
"require": {
"php": "^7.2",
"beberlei/assert": "^3.2",
"egulias/email-validator": "^2.1",
"fzaninotto/faker": "^1.9",
"mtdowling/jmespath.php": "^2.5",
"ramsey/uuid": "^3.9",
"symfony/console": "^4.0 || ^5.0",
"symfony/filesystem": "^4.0 || ^5.0",
"twig/twig": "^2.0 || ^3.0"
},
"require-dev": {
"roave/security-advisories": "master@dev",
"phpunit/phpunit": "^7.0",
"phpmd/phpmd": "^2.8",
"squizlabs/php_codesniffer": "^3.5",
"mockery/mockery": "^0.9.9 || ^1.0",
"phpstan/phpstan": "^0.9.2 || ^0.11.5"
},
"autoload": {
"psr-4": { "Trellis\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Trellis\\Tests\\" : "tests/" }
},
"bin": [ "bin/trellis" ],
"scripts": {
"test": "phpunit tests",
"tests": "phpunit --no-coverage tests",
"code-sniffer": "phpcs --extensions=php --standard=psr2 src tests",
"phpstan": "phpstan analyse -l 7 -c phpstan.neon src/",
"build": [
"@test",
"@code-sniffer"
]
}
}