-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 1.7 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
{
"name": "darkorsa/cordo",
"description": "Microframework designed to efficienly develop REST APIs based on layered architecture and using CQRS, Layered Architecture, Events, Queues, etc.",
"license": "MIT",
"require": {
"darkorsa/cordo-core": "~0.60.0"
},
"require-dev": {
"nunomaduro/phpinsights": "dev-master",
"pestphp/pest": "^1.18",
"pestphp/pest-plugin-faker": "^1.0",
"phpstan/phpstan": "^1.8",
"symfony/var-dumper": "^5.2"
},
"autoload": {
"psr-4": {
"App\\": "app"
},
"files": [
"helpers/helper_functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "pest",
"analyse": "phpstan analyse -l 5 -c phpstan.neon app",
"insights": "phpinsights -v",
"schema-create": "doctrine orm:schema-tool:create",
"schema-drop": "doctrine orm:schema-tool:drop --force",
"schema-update": "doctrine orm:schema-tool:update --force",
"schema-cache:clear-metadata": "doctrine orm:clear-cache:metadata",
"apidoc": "apidoc -i app/ -o apidoc/",
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 app/",
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 app/"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"pestphp/pest-plugin": true
}
}
}