-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
66 lines (66 loc) · 1.74 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
{
"name": "php-deal/framework",
"description": "Design by Contract framework for PHP",
"require": {
"php": "~7.1",
"goaop/framework": "^2.3"
},
"require-dev": {
"beberlei/assert": "~3.0",
"phpstan/phpstan": "^0.12.88",
"phpunit/phpunit": "^7.5",
"roave/security-advisories": "dev-master",
"slevomat/coding-standard": "^6.1",
"squizlabs/php_codesniffer": "^3.4",
"symfony/console": "~3.0|~4.0"
},
"license": "MIT",
"authors": [
{
"name": "Alexander Lisachenko",
"email": "lisachenko.it@gmail.com"
},
{
"name": "Piotr Dawidiuk",
"email": "piotr.dawidiuk@gmail.com"
},
{
"name": "Andreas Frömer",
"email": "blubb0r05+github@gmail.com"
}
],
"autoload": {
"psr-4": {
"PhpDeal\\": "src/"
}
},
"autoload-dev": {
"psr-0": {
"Demo\\": "demo/"
},
"psr-4": {
"PhpDeal\\": "tests/"
}
},
"scripts": {
"phpstan": "phpstan analyze",
"phpcs": "phpcs src tests -sp --colors",
"phpunit": "phpunit --verbose --colors=always",
"test": [
"@phpstan",
"@phpcs",
"@phpunit"
]
},
"config": {
"sort-packages": true
},
"suggest": {
"beberlei/assert": "Thin assertion library for input validation in business models. Used for tests."
},
"support": {
"issues": "https://github.com/php-deal/framework/issues",
"source": "https://github.com/php-deal/framework",
"docs": "https://github.com/php-deal/framework/blob/master/README.md"
}
}