-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
80 lines (80 loc) · 2.55 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
{
"name": "zviryatko/api-monitor",
"description": "API Monitor",
"type": "project",
"homepage": "https://github.com/zviryatko/api-monitor",
"license": "BSD-3-Clause",
"keywords": [
"api",
"monitor"
],
"config": {
"sort-packages": true,
"allow-plugins": {
"ocramius/package-versions": true,
"laminas/laminas-component-installer": true,
"php-http/discovery": true
}
},
"autoload": {
"psr-4": {
"App\\": "src/App/"
}
},
"autoload-dev": {
"psr-4": {
"AppTest\\": "test/AppTest/"
}
},
"scripts": {
"post-create-project-cmd": [
"@development-enable"
],
"check": [
"@cs-check",
"@test",
"@analyze"
],
"analyze": "phpstan analyze -l max -c ./phpstan.installer.neon ./src ./config",
"clear-config-cache": "php bin/clear-config-cache.php",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"serve": "php -S 0.0.0.0:8080 -t public/",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
},
"require": {
"amphp/parallel-functions": "^2.0",
"auth0/auth0-php": "^8.11",
"doctrine/doctrine-orm-module": "^6.1",
"guzzlehttp/guzzle": "^7.8",
"guzzlehttp/psr7": "^2.6",
"http-interop/http-factory-guzzle": "^1.2",
"laminas/laminas-cli": "^1.10",
"laminas/laminas-component-installer": "^3.4",
"laminas/laminas-config-aggregator": "^1.15",
"laminas/laminas-diactoros": "^3.3",
"laminas/laminas-eventmanager": "^3.13",
"laminas/laminas-form": "^3.19",
"laminas/laminas-http": "^2.19",
"laminas/laminas-mail": "^2.25",
"laminas/laminas-servicemanager": "^3.22",
"laminas/laminas-stdlib": "^3.19",
"mezzio/mezzio": "^3.19",
"mezzio/mezzio-csrf": "^1.9",
"mezzio/mezzio-fastroute": "^3.11",
"mezzio/mezzio-helpers": "^5.16",
"mezzio/mezzio-session-ext": "^1.19",
"mezzio/mezzio-twigrenderer": "^2.15",
"roave/psr-container-doctrine": "^3.0",
"symfony/cache": "^5.4"
},
"require-dev": {
"filp/whoops": "^2.15",
"laminas/laminas-developer-tools": "*",
"laminas/laminas-development-mode": "^3.12",
"phpunit/phpunit": "^11.2",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.10"
}
}