-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
90 lines (90 loc) · 2.68 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "berfi/rbac",
"description": "An RBAC backend",
"keywords": [
"microframework",
"rest",
"router",
"psr7"
],
"homepage": "https://github.com/gabrielberthier/backoffice-artchie",
"license": "MIT",
"authors": [
{
"name": "Gabriel Berthier",
"email": "gabrielnberthier@gmail.com",
"homepage": "https://github.com/gabrielberthier"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"cycle/annotated": "^3.2",
"cycle/entity-behavior-uuid": "^1.1",
"cycle/migrations": "^4.1",
"cycle/orm": "^2.3",
"doctrine/dbal": "^3.6",
"doctrine/migrations": "^3.6",
"doctrine/orm": "^2.15.0",
"firebase/php-jwt": "^6.0",
"gabrielberthier/s3-data-transfer": "~1.0",
"league/flysystem-aws-s3-v3": "^1.0",
"league/mime-type-detection": "^1.11",
"league/oauth2-google": "^4.0",
"maennchen/zipstream-php": "^2.1",
"middlewares/trailing-slash": "^2.0",
"monolog/monolog": ">=3.4",
"nyholm/psr7": "^1.8",
"nyholm/psr7-server": "^1.0",
"php-di/php-di": "^7.0",
"ramsey/uuid-doctrine": "^1.6",
"respect/validation": "^2.2",
"slim/psr7": ">=1.0",
"slim/slim": "^4.11",
"spiral/roadrunner": "^2023.1",
"spiral/roadrunner-http": "^3.0",
"symfony/cache": "^6.0",
"symfony/dotenv": "^6.0",
"symfony/yaml": "^6.0"
},
"require-dev": {
"phpspec/prophecy": "dev-master",
"phpunit/phpunit": "^10",
"rector/rector": "^0.17.5",
"squizlabs/php_codesniffer": "^3.6",
"symfony/var-dumper": "^6.3"
},
"config": {
"process-timeout": 0,
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"autoload": {
"psr-4": {
"App\\": "src/",
"Core\\": "app/"
},
"files": [
"app/functions/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"start": "php -S localhost:8080 -t public",
"test": "phpunit --exclude-group doctrine",
"test:doctrine": "phpunit --group doctrine",
"test:nodebug": "@php -c ./disable-xdebug.ini && phpunit",
"test:update": "phpunit --migrate-configuration",
"doctrine": "doctrine",
"doctrine:create-db": "doctrine orm:clear-cache:metadata && doctrine orm:schema-tool:create && doctrine dbal:run-sql database/bootstrap.sql",
"doctrine:update-db": "doctrine orm:schema-tool:update",
"doctrine:drop-db": "doctrine orm:schema-tool:drop --force",
"doctrine:clear-cache": "doctrine orm:clear-cache:metadata && doctrine orm:clear-cache:query && doctrine orm:clear-cache:result"
}
}