-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
73 lines (73 loc) · 2.04 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
{
"name": "ecodev/felix",
"description": "Various utilities tailored for our ecosystem",
"type": "library",
"license": "MIT",
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"scripts": {
"check": [
"php-cs-fixer fix --ansi --dry-run --diff",
"phpunit --color=always",
"phpstan analyse --ansi"
],
"fix": [
"php-cs-fixer fix --ansi"
]
},
"autoload": {
"psr-4": {
"Ecodev\\Felix\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"EcodevTests\\Felix\\": "tests"
}
},
"extra": {
"laminas": {
"config-provider": "Ecodev\\Felix\\ConfigProvider"
}
},
"require": {
"php": "^8.2",
"ext-bcmath": "*",
"ext-fileinfo": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-readline": "*",
"cakephp/chronos": "^3.0.3",
"doctrine/dbal": "^3.8",
"doctrine/migrations": "^3.8",
"ecodev/graphql-doctrine": "^10.0",
"imagine/imagine": "^1.3",
"laminas/laminas-diactoros": "^3.3",
"laminas/laminas-log": "^2.17",
"laminas/laminas-mail": "^2.25",
"laminas/laminas-permissions-acl": "^2.16",
"laminas/laminas-servicemanager": "^3.22",
"laminas/laminas-validator": "^2.60",
"laminas/laminas-view": "^2.35",
"mezzio/mezzio-session": "^1.14",
"moneyphp/money": "^4.5",
"spomky-labs/otphp": "^11.3",
"symfony/cache": "^5.4 || ^6.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "@stable",
"laminas/laminas-config-aggregator": "@stable",
"laminas/laminas-i18n": "@stable",
"mikey179/vfsstream": "@stable",
"phpstan/phpstan": "@stable",
"phpstan/phpstan-phpunit": "@stable",
"phpunit/phpunit": "^9.6"
}
}