-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 830 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 830 Bytes
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
{
"name": "danilo/factory-pattern",
"description": "Factory Design Pattern",
"authors": [
{
"name": "Danilo Pereira",
"email": "danilo4web@gmail.com"
}
],
"require": {
"php": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpunit/php-code-coverage": "^9.2.3",
"squizlabs/php_codesniffer": "3.*"
},
"autoload": {
"psr-4": {
"DesignPattern\\": "src",
"Tests\\Integration\\": "tests/integration/",
"Tests\\Unit\\": "tests/unit/"
}
},
"scripts": {
"check-psr12": "phpcs --standard=PSR12 src",
"test": "phpunit --colors=always",
"test-coverage-html": "XDEBUG_MODE=coverage phpunit --colors=always --coverage-html code-coverage"
}
}