-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 988 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
{
"name": "silktide/syringe",
"description": "Silktide Syringe, configuration utility for Pimple",
"license": "MIT",
"homepage": "https://github.com/silktide/syringe",
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-mbstring": "*",
"pimple/pimple": "~3.0",
"symfony/yaml": "^2.4|~3|~4|~5",
"psr/simple-cache": "^1.0",
"ocramius/proxy-manager": "^2.8"
},
"require-dev": {
"phpunit/phpunit": "~9",
"phpstan/phpstan": "~0",
"mikey179/vfsstream": "^1.6",
"cache/array-adapter": "^1.0",
"cache/filesystem-adapter": "^1.0"
},
"autoload": {
"psr-4": {
"Silktide\\Syringe\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Silktide\\Syringe\\Tests\\": "tests/unit",
"Silktide\\Syringe\\IntegrationTests\\": "tests/integration"
}
},
"suggest": {
"ext-yaml": "Allows much faster parsing of Yaml files",
"symfony/yaml": "Required to parse Yaml files if ext-yaml is not installed"
}
}