-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 990 Bytes
/
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
{
"name": "aymardkouakou/cakephp-cors-middleware",
"description": "Basic Cors middleware for CakePHP framework.",
"keywords": [
"php",
"cors",
"cakephp"
],
"homepage": "https://github.com/aymeekouakou/cakephp-cors-middleware",
"license": "MIT",
"authors": [
{
"name": "AYMARD KOUAKOU",
"email": "[email protected]",
"homepage": "http://aymardkouakou.me",
"role": "developer"
}
],
"autoload": {
"psr-4": {
"Kouakou\\Aymard\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Kouakou\\Aymard\\Tests\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
},
"require": {
"php": "^7.3",
"cakephp/cakephp": "^3.7"
},
"require-dev": {
"phpunit/phpunit": "^8.1"
},
"scripts": {
"phpunit": "vendor/bin/phpunit --colors=always"
}
}