forked from LM-Commons/LmcCors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
77 lines (77 loc) · 2.14 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
{
"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",
"laminas/laminas-eventmanager": "^2.6.4 || ^3.2.1",
"laminas/laminas-http": "^2.10",
"laminas/laminas-mvc": "^2.7.15 || ^3.1.1",
"laminas/laminas-servicemanager": "^2.7.9 || ^3.4.0"
},
"require-dev": {
"laminas/laminas-i18n": "^2.9",
"laminas/laminas-log": "^2.10",
"laminas/laminas-modulemanager": "^2.7.2",
"laminas/laminas-view": "^2.8.1",
"phpunit/phpunit": "^10.5 || ^11.0",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"psr-4": {
"LmcCors\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LmcCorsTest\\": "tests/"
}
},
"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"
},
"config": {
"allow-plugins": {
"laminas/laminas-component-installer": true
}
}
}