-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
46 lines (46 loc) · 1.37 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
{
"name": "ezsystems/doctrine-dbal-schema",
"description": "Abstraction layer, on top of Doctrine, for cross-DBMS schema import",
"type": "ezplatform-bundle",
"license": "GPL-2.0-only",
"require": {
"php": "^7.3 || ^8.0",
"doctrine/dbal": "^2.10",
"symfony/config": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/yaml": "^5.0"
},
"require-dev": {
"ezsystems/ezplatform-code-style": "^0.4.0",
"friendsofphp/php-cs-fixer": "^2.16",
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
"EzSystems\\DoctrineSchemaBundle\\": "src/bundle",
"EzSystems\\DoctrineSchema\\": "src/lib"
}
},
"autoload-dev": {
"psr-4": {
"EzSystems\\Tests\\DoctrineSchema\\": "tests/lib"
}
},
"scripts": {
"fix-cs": "php-cs-fixer fix -v --show-progress=estimating",
"check-cs": "@fix-cs --dry-run",
"test": "phpunit -vc phpunit.xml"
},
"extra": {
"_ezplatform_branch_for_behat_tests": "3.0",
"branch-alias": {
"dev-master": "1.0.x-dev",
"dev-tmp_ci_branch": "1.0.x-dev"
},
"thanks": {
"name": "ezsystems/ezplatform",
"url": "https://github.com/ezsystems/ezplatform"
}
}
}