-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
83 lines (83 loc) · 2.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
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
{
"name": "saeven/zf3-circlical-user",
"description": "Complete user entity, rights, and access module for Laminas",
"type": "library",
"license": "MPL-2.0",
"homepage": "https://github.com/Saeven/zf3-circlical-user",
"minimum-stability": "dev",
"keywords": [
"user",
"zf3",
"laminas",
"user management",
"acl",
"rbac",
"bjyauthorize",
"authorization",
"auth"
],
"authors": [
{
"name": "Alexandre Lemaire",
"email": "alemaire@circlical.com",
"homepage": "http://circlical.com/",
"role": "Paper Stapler"
}
],
"prefer-stable": true,
"require": {
"ext-json": "*",
"php": "~8.0.12 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"laminas/laminas-eventmanager": "^3.4",
"laminas/laminas-servicemanager": "^3.7",
"laminas/laminas-mvc": "^3.3",
"laminas/laminas-view": "^2.13",
"laminas/laminas-http": "^2.15",
"laminas/laminas-router": "^3.5",
"doctrine/doctrine-orm-module": "~5.3.0|~6.1",
"doctrine/doctrine-module": "~6.0.0|~6.1.0",
"doctrine/orm": "^2.10",
"paragonie/halite": "~5.1.0",
"paragonie/hidden-string": "v2.0.0",
"ramsey/uuid": "^4",
"ramsey/uuid-doctrine": "^1.6",
"laminas/laminas-validator": "^2.15"
},
"require-dev": {
"phpspec/phpspec": "7.0.1|7.2.0|7.3.0|7.5.0",
"friends-of-phpspec/phpspec-code-coverage": "@stable",
"codacy/coverage": "^1.0",
"bjeavons/zxcvbn-php": "^1.0",
"laminas/laminas-coding-standard": "^2.3.0",
"phpstan/phpstan": "~1.10.0",
"vimeo/psalm": "5.23.1"
},
"suggest": {
"bjeavons/zxcvbn-php": "Even better password checking!",
"laminas/laminas-diactoros": "Recommended to support middleware guards.",
"laminas/laminas-psr7bridge": "Recommended to support middleware guards.",
"laminas/laminas-stratigility": "Recommended to support middleware guards.",
"http-interop/http-middleware": "Recommended to support middleware guards."
},
"autoload": {
"psr-4": {
"CirclicalUser\\": "src/"
}
},
"scripts": {
"check": [
"@stan",
"@cs",
"@test"
],
"cs": "vendor/bin/phpcs",
"stan": "vendor/bin/phpstan analyse -c ./phpstan.neon --memory-limit 1G --xdebug --ansi -vvv src",
"test": "XDEBUG_MODE=coverage vendor/bin/phpspec run",
"psalm": "vendor/bin/psalm --shepherd"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}