-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
51 lines (51 loc) · 1.5 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
{
"name": "champs-libres/wopi-bundle",
"description": "A bundle providing routes and glue code between Symfony and a WOPI connector.",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"wopi",
"symfony-bundle"
],
"homepage": "http://github.com/champs-libres/wopi-bundle",
"require": {
"php": ">= 7.4",
"ext-json": "*",
"ext-mbstring": "*",
"champs-libres/wopi-lib": "dev-master",
"loophp/psr-http-message-bridge-bundle": "^1",
"symfony/expression-language": ">= 4.4",
"symfony/framework-bundle": ">= 4.4",
"symfony/http-client": ">= 4.4",
"symfony/security-core": ">= 4.4"
},
"require-dev": {
"drupol/php-conventions": "^5.0",
"friends-of-phpspec/phpspec-code-coverage": "^6.1",
"nyholm/psr7": "^1.4",
"phpspec/phpspec": "^7.1",
"phpspec/prophecy": "^1.16",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^6.2"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"ChampsLibres\\WopiBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ChampsLibres\\WopiBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"phpro/grumphp": true,
"ergebnis/composer-normalize": true
}
}
}