-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
49 lines (49 loc) · 1.41 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": "byjg/rest-reference-architecture",
"description": "ByJG's Reference Architecture project for RESTFul services in PHP with docker and database integrated",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"require": {
"php": ">=8.1",
"ext-json": "*",
"ext-openssl": "*",
"ext-curl": "*",
"byjg/config": "^4.9",
"byjg/anydataset-db": "^4.9",
"byjg/micro-orm": "^4.9",
"byjg/authuser": "^4.9",
"byjg/mailwrapper": "^4.9",
"byjg/restserver": "^4.9",
"zircote/swagger-php": "^4.6.1",
"byjg/swagger-test": "^4.9",
"byjg/migration": "^4.9",
"byjg/php-daemonize": "^4.9",
"byjg/shortid": "^4.9",
"byjg/jinja-php": "^4.9"
},
"require-dev": {
"phpunit/phpunit": "5.7.*|7.4.*|^9.5"
},
"autoload": {
"psr-4": {
"RestReferenceArchitecture\\": "src/",
"Builder\\": "builder/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit",
"migrate": "Builder\\Scripts::migrate",
"codegen": "Builder\\Scripts::codeGenerator",
"openapi": "Builder\\Scripts::genOpenApiDocs",
"compile": "composer run openapi && composer run test",
"up-local-dev": "docker compose -f docker-compose-dev.yml up -d",
"down-local-dev": "docker compose -f docker-compose-dev.yml down",
"post-create-project-cmd": "Builder\\PostCreateScript::run"
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/"
}
}
}