-
Notifications
You must be signed in to change notification settings - Fork 46
/
composer.json
50 lines (50 loc) · 1.96 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
{
"name": "sokil/php-mongo",
"description": "PHP Object Document Mapper for MongoDB",
"type": "library",
"license": "MIT",
"keywords": ["mongo", "mongodb", "odm", "orm", "nosql"],
"homepage": "http://phpmongokit.github.io/",
"authors": [
{
"name": "Dmytro Sokil",
"email": "dmytro.sokil@gmail.com"
}
],
"autoload": {
"psr-4": {
"Sokil\\Mongo\\": ["src/", "tests/"]
},
"classmap": ["stubs/"]
},
"require": {
"php": ">=5.4 || ^7.0",
"psr/log": "~1.0",
"psr/simple-cache": "^1.0",
"jmikola/geojson": "~1.0",
"symfony/event-dispatcher": ">=2.0 <5.0",
"symfony/polyfill-php55": "~1.0"
},
"require-dev": {
"phpunit/phpunit": ">=4.8.35 <6.0",
"satooshi/php-coveralls": ">=0.7.1 <2.0",
"squizlabs/php_codesniffer": "^2.3",
"phpmd/phpmd" : "@stable"
},
"suggest": {
"sokil/php-mongo-migrator": "Add support of migrations",
"sokil/php-mongo-bundle": "Symfony Bundle",
"phpmongokit/laravel-mongo-pdm": "PHPMongo ODM Adapter for Laravel",
"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"
},
"scripts": {
"test": "./vendor/bin/phpunit -c ./tests/phpunit.xml ./tests",
"dockertest": "./run-docker-tests.sh",
"cover": "./vendor/bin/phpunit -c ./tests/phpunit.xml --coverage-clover ./share/phpunit/clover.xml ./tests",
"coveralls": "./vendor/bin/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"
}
}