-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
29 lines (29 loc) · 777 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
{
"name": "mateuszbieniek/ezplatform-database-health-checker",
"license": "MIT",
"type": "ezplatform-bundle",
"description": "Allows to check the project's database against most common issues",
"repositories": [
{
"type": "composer",
"url": "https://updates.ez.no/ttl"
}
],
"autoload": {
"psr-4": {
"MateuszBieniek\\EzPlatformDatabaseHealthCheckerBundle\\": "src/bundle/",
"MateuszBieniek\\EzPlatformDatabaseHealthChecker\\": "src/lib/"
}
},
"require": {
"php": ">=7.1",
"ezsystems/ezpublish-kernel": "^7.5",
},
"require-dev": {
"friendsofphp/php-cs-fixer": "2.7.*",
"phpunit/phpunit": "~7.0"
},
"scripts": {
"fix-cs": "@php ./vendor/bin/php-cs-fixer fix -v --show-progress=estimating"
}
}