-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
42 lines (42 loc) · 1.57 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
{
"name": "sokil/php-mongo-migrator",
"description": "Migrations for MongoDB",
"license": "MIT",
"homepage": "http://phpmongokit.github.io/",
"authors": [
{
"name": "sokil",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6 || ^7.0",
"sokil/php-mongo": "1.*",
"symfony/console": ">=2.0 <6.0",
"symfony/yaml": ">=2.0 <6.0"
},
"require-dev": {
"phpunit/phpunit": ">=3.7.38 <6.0",
"satooshi/php-coveralls": ">=0.7.1 <3.0",
"squizlabs/php_codesniffer": "^3"
},
"autoload": {
"psr-4": {
"Sokil\\Mongo\\Migrator\\": "src"
}
},
"bin": ["bin/mongo-migrator"],
"scripts": {
"test": "./vendor/bin/phpunit -c ./tests/phpunit.xml ./tests",
"cover": "./vendor/bin/phpunit -c ./tests/phpunit.xml --coverage-clover ./share/phpunit/clover.xml ./tests",
"coveralls": "./vendor/bin/php-coveralls -v",
"check-style": "./vendor/bin/phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src",
"fix-style": "./vendor/bin/phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src"
},
"suggest": {
"sokil/php-mongo-bundle": "Symfony Bundle",
"sokil/php-mongo-yii": "Yii Framework component",
"phpmongokit/yii2-mongo-odm": "Yii2 Framework component",
"alcaeus/mongo-php-adapter": "Adapter to provide ext-mongo interface on top of mongo-php-library"
}
}