-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.37 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.37 KB
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
{
"name": "bytes-commerce/synology-php-api",
"description": "An API wrapper to connect and interact with any Synology Drive accessible for the application.",
"type": "symfony-bundle",
"license": "proprietary",
"authors": [
{
"name": "Maximilian Graf Schimmelmann",
"email": "schimmelmann@bytes-commerce.de"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"BytesCommerce\\SynologyApi\\": "src/"
}
},
"require": {
"php": ">=8.2",
"symfony/framework-bundle": "^7",
"symfony/http-kernel": "^7",
"symfony/config": "^7",
"symfony/translation": "^7.2",
"symfony/event-dispatcher": "^7.2",
"symfony/console": "7.2.*",
"symfony/dotenv": "7.2.*",
"symfony/flex": "^2",
"symfony/yaml": "^7.2",
"symfony/asset": "^7.2"
},
"require-dev": {
"phpunit/phpunit": "^9.6.22",
"rector/rector": "^2.0",
"phpstan/phpstan": "^2.1"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"allow-plugins": {
"symfony/flex": true
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}