-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.16 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
{
"name": "redrat/entity-datetime",
"description": "Datetime trait for entities",
"keywords": ["php", "trait", "datetime"],
"homepage": "https://github.com/joubertredrat/entity-datetime",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Joubert RedRat",
"email": "me+github@redrat.com.br"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"RedRat\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": "^7.2",
"symfony/var-dumper": "^4.1",
"squizlabs/php_codesniffer": "^3.3"
},
"scripts": {
"psr2": [
"vendor/squizlabs/php_codesniffer/bin/phpcs --standard=PSR2 --extensions=php,inc,lib src/",
"vendor/squizlabs/php_codesniffer/bin/phpcs --standard=PSR2 --extensions=php,inc,lib tests/"
],
"tests": "vendor/phpunit/phpunit/phpunit -c phpunit.xml --no-coverage",
"coverage": "vendor/phpunit/phpunit/phpunit -c phpunit.xml"
}
}