-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.68 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.68 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
53
54
55
56
57
58
59
60
61
{
"name": "flutchman/ez-migration-ui-bundle",
"license": "GPL-2.0",
"type": "ezplatform-bundle",
"description": "eZ Platform AdminUI extension",
"keywords": [
"migrations",
"database",
"ezpublish",
"ezplatform",
"admin-ui"
],
"authors": [
{
"name": "Alexandre Andrieux",
"email": "alexandre.andrieux.pro@gmail.com"
}
],
"support": {
"email": "alexandre.andrieux.pro@gmail.com",
"source": "https://github.com/flutchman/eZMigrationUiBundle",
"docs": "https://github.com/flutchman/eZMigrationUiBundle/tree/master/docs",
"issues": "https://github.com/flutchman/eZMigrationUiBundle/issues"
},
"autoload": {
"psr-4": {
"Flutchman\\EzMigrationUiBundle\\": "src/"
}
},
"minimum-stability": "dev",
"config": {
"process-timeout": 3000,
"platform": {
"php": "7.1"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2"
},
"require": {
"php": ">=7.1",
"kaliop/ezmigrationbundle": "^4"
},
"scripts": {
"fix-cs": "@php ./vendor/bin/php-cs-fixer fix -v --show-progress=estimating"
},
"scripts-descriptions": {
"fix-cs": "Fix Coding standard issues in current checkout."
},
"extra": {
"_ezplatform_branch_for_behat_tests": "master",
"branch-alias": {
"dev-tmp_ci_branch": "0.2.x-dev",
"dev-master": "0.2.x-dev"
},
"thanks": {
"name": "flutchman/ez-migration-ui-bundle",
"url": "https://github.com/flutchman/eZMigrationUiBundle"
}
}
}