-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
97 lines (97 loc) · 2.84 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "browscap/browscap-site",
"type": "application",
"description": "Website for the Browser Capabilities project",
"keywords": ["browscap"],
"homepage": "https://github.com/browscap/browscap-site",
"license": "MIT",
"authors": [
{
"name": "James Titcumb",
"email": "[email protected]"
},
{
"name": "Contributors",
"homepage": "https://github.com/browscap/browscap/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/browscap/browscap-site/issues",
"source": "https://github.com/browscap/browscap-site"
},
"require": {
"php": "8.3.*",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-dom": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-xml": "*",
"ext-zip": "*",
"composer-plugin-api": "^2.6",
"azjezz/psl": "^3.0",
"browscap/browscap": "^6.1.7",
"browscap/browscap-php": "^7.4",
"guzzlehttp/guzzle": "^7.9",
"laminas/laminas-config-aggregator": "^1.15",
"laminas/laminas-diactoros": "^3.5",
"laminas/laminas-servicemanager": "^4.2",
"lazypdo/lazypdo": "^2.0",
"league/flysystem": "^3.29",
"matthiasmullie/scrapbook": "^1.5",
"monolog/monolog": "^3.7",
"psr/container": "^2.0",
"psr/http-message": "^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "^3.0",
"psr/simple-cache": "^3.0",
"slim/slim": "^4.14",
"slim/twig-view": "^3.4",
"symfony/console": "^7.1",
"webmozart/assert": "^1.11"
},
"require-dev": {
"doctrine/coding-standard": "^12.0",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^10.5",
"psalm/plugin-phpunit": "^0.19.0",
"php-standard-library/psalm-plugin": "^2.3",
"roave/security-advisories": "dev-latest",
"vimeo/psalm": "^5.26"
},
"config": {
"platform": {
"php": "8.3.12"
},
"process-timeout": 0,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true
}
},
"autoload": {
"psr-4": {
"BrowscapSite\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BrowscapSiteTest\\": "tests/"
}
},
"bin": ["bin/browscap-site"],
"scripts": {
"post-install-cmd": [
"bin/browscap-site generate-build"
],
"post-update-cmd": [
"bin/browscap-site generate-build"
]
}
}