-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
125 lines (125 loc) · 4.5 KB
/
composer.json
File metadata and controls
125 lines (125 loc) · 4.5 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "thebiggive/identity",
"description": "A microservice for individual identification and data management",
"homepage": "https://github.com/thebiggive/identity",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Noel Light-Hilary",
"email": "noel@thebiggive.org.uk"
}
],
"require": {
"php": "^8.5",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-redis": "*",
"beberlei/assert": "^3.3",
"cweagans/composer-patches": "^1.7",
"doctrine/migrations": "^3.5",
"doctrine/orm": "^3.6.2",
"firebase/php-jwt": "^7.0",
"guzzlehttp/guzzle": "^7.5",
"laminas/laminas-diactoros": "^3.8",
"los/los-rate-limit": "dev-master",
"middlewares/client-ip": "^2.0",
"monolog/monolog": "^2.6",
"php-di/php-di": "^7.0",
"slim/psr7": "^1.5",
"slim/slim": "^4.14",
"stripe/stripe-php": "^v19.2.0",
"symfony/amazon-sqs-messenger": "^7.1",
"symfony/cache": "^6.1",
"symfony/console": "^6.3",
"symfony/doctrine-bridge": "^6.1",
"symfony/http-client": "^6.2",
"symfony/property-access": "^6.1",
"symfony/redis-messenger": "^7.1",
"symfony/serializer": "^6.1",
"symfony/uid": "^6.1",
"symfony/validator": "^6.1",
"thebiggive/messages": "^3.4.0",
"zircote/swagger-php": "^5.8.2"
},
"require-dev": {
"jangregor/phpstan-prophecy": "^1.0.0",
"jetbrains/phpstorm-attributes": "^1.0",
"phpspec/prophecy-phpunit": "^2.2",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^9.6",
"psalm/plugin-phpunit": "^0.19.2",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^4.0",
"vimeo/psalm": "^6.15.1",
"weirdan/doctrine-psalm-plugin": "^2.9"
},
"repositories": [{
"type": "vcs",
"url": "https://github.com/thebiggive/LosRateLimit"
}],
"config": {
"optimize-autoloader": true,
"process-timeout": 0,
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"cweagans/composer-patches": true
},
"platform": {
"php": "8.5.2"
}
},
"autoload": {
"psr-4": {
"BigGive\\Identity\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BigGive\\Identity\\Tests\\": "tests/",
"BigGive\\Identity\\IntegrationTests\\": "integrationTests/"
}
},
"bin": ["bin/doctrine"],
"scripts": {
"docs": "openapi --output docs/openapi.yaml src",
"doctrine:cache:clear": [
"./bin/doctrine orm:clear-cache:metadata",
"./bin/doctrine orm:clear-cache:query",
"./bin/doctrine orm:clear-cache:result"
],
"doctrine:delete-and-recreate": [
"./bin/doctrine orm:schema-tool:drop --full-database --force",
"@doctrine:migrate",
"./identity identity:populate-test-users"
],
"doctrine:migrate": "doctrine-migrations migrate --no-interaction --allow-no-migration",
"doctrine:migrate:diff": ["@doctrine:cache:clear", "doctrine-migrations diff"],
"doctrine:migrate:generate": "doctrine-migrations generate",
"doctrine:validate": ["@doctrine:cache:clear", "./bin/doctrine orm:validate-schema"],
"sa:check": "vendor/bin/phpstan # todo - introduce psalm also when Psalm 7 is released with PHP 8.5 support",
"sa:check:inc-baseline-ignored": "vendor/bin/psalm --show-info=true --output-format=by-issue-level",
"lint:check": "phpcs --standard=phpcs.xml -s .",
"lint:fix": "phpcbf --standard=phpcs.xml -s .",
"start": "php -S localhost:8080 -t public",
"test": "XDEBUG_MODE=coverage phpunit",
"integration-test": "XDEBUG_MODE=coverage phpunit --config=phpunit-integration.xml --order-by=random",
"save-build-commit-id": [
"echo '<?php \nreturn \"'`git rev-parse HEAD`'\";\n' > .build-commit-id.php"
],
"post-install-cmd": [
"composer save-build-commit-id"
]
},
"extra": {
"patches": {
"doctrine/dbal": {
"Doctrine migrations functional index workaround": "dbal-functional-index.patch"
}
}
}
}