-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1.19 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
{
"name": "selami/entity",
"description": "A library to assert variable types and values for a model defined using JSON Schema standard (draft-07 and draft-06).",
"type": "library",
"require": {
"php": "^7.2",
"ext-json": "*",
"opis/json-schema": "^1.0",
"ramsey/uuid": "^3.8"
},
"license": "MIT",
"authors": [
{
"name": "Mehmet Korkmaz",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Selami\\Entity\\" : "./src/"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.3",
"codeception/codeception": "^2.5",
"php-coveralls/php-coveralls": "^2.1",
"object-calisthenics/phpcs-calisthenics-rules": "^3.3"
},
"scripts": {
"unit-tests": "vendor/bin/codecept run unit --coverage",
"phpcs": "vendor/bin/phpcs --standard=PSR2 src tests",
"phpcbf": "vendor/bin/phpcbf --standard=PSR2 src tests",
"phpcs-object-calisthenics": "vendor/bin/phpcs src -sp --standard=vendor/object-calisthenics/phpcs-calisthenics-rules/src/ObjectCalisthenics/ruleset.xml"
}
}