-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
81 lines (81 loc) · 2.26 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
{
"name": "lm-commons/lmc-cors",
"description": "Laminas MVC module that let you deal with CORS requests",
"type": "library",
"license": "MIT",
"keywords": [
"laminas",
"laminas MVC",
"cors",
"rest",
"cross origin sharing resource"
],
"homepage": "https://github.com/lm-commons/lmc-cors",
"authors": [
{
"name": "Florent Blaison",
"email": "[email protected]"
},
{
"name": "Michaël Gallego",
"email": "[email protected]",
"homepage": "http://www.michaelgallego.fr/"
},
{
"name": "Eric Richer",
"email": "[email protected]",
"homepage": "https://visto9259.github.io/"
}
],
"extra": {
"laminas": {
"module": "LmcCors",
"config-provider": "LmcCors\\ConfigProvider"
}
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"laminas/laminas-eventmanager": "^3.2.1",
"laminas/laminas-http": "^2.10",
"laminas/laminas-mvc": "^3.1.1",
"laminas/laminas-servicemanager": "^3.4.0"
},
"require-dev": {
"laminas/laminas-modulemanager": "^2.7.2",
"phpunit/phpunit": "^10.5 || ^11.0",
"laminas/laminas-coding-standard": "^3.0",
"vimeo/psalm": "^5.26.0",
"psalm/plugin-phpunit": "^0.19.0"
},
"autoload": {
"psr-4": {
"LmcCors\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LmcCorsTest\\": "test/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit",
"test-coverage": "phpunit --colors=always --coverage-clover build/logs/clover.xml",
"test-coverage-html": "phpunit --colors=always --coverage-html build/html",
"static-analysis": "psalm --shepherd --stats"
},
"config": {
"allow-plugins": {
"laminas/laminas-component-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "8.1.99"
}
}
}