forked from algolia/search-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 2 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "algolia/search-bundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Algolia",
"email": "[email protected]"
}
],
"prefer-stable": true,
"require": {
"php": "^5.6 || ^7.0",
"algolia/algoliasearch-client-php": "^2.5",
"doctrine/common": "^2.5",
"symfony/filesystem": "^3.4 || ^4.0 || ^5.0",
"symfony/property-access": "^3.4 || ^4.0 || ^5.0",
"symfony/serializer": "^3.4 || ^4.0 || ^5.0"
},
"autoload": {
"psr-4": {
"Algolia\\SearchBundle\\": "src/"
}
},
"conflict": {
"doctrine/mongodb-odm": "< 1.3"
},
"autoload-dev": {
"psr-4": {
"Algolia\\SearchBundle\\": "tests/"
}
},
"require-dev": {
"doctrine/doctrine-bundle": "^1.8 || ^2.0",
"doctrine/orm": "^2.5",
"jms/serializer-bundle": "^2.3 || ^3.0",
"ocramius/proxy-manager": "*",
"phpunit/phpunit": "^5.7.21 || ^6.4 || ^7.0",
"symfony/doctrine-bridge": "^3.4 || ^4.0 || ^5.0",
"symfony/framework-bundle": "^3.4 || ^4.0 || ^5.0",
"symfony/phpunit-bridge": "^3.4 || ^4.0 || ^5.0",
"symfony/proxy-manager-bridge": "*",
"symfony/yaml": "^3.4 || ^4.0 || ^5.0",
"friendsofphp/php-cs-fixer": "^2.15",
"roave/security-advisories": "dev-master"
},
"extra": {
"branch-alias": {
"dev-master": "5.x-dev"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test:install": "composer install -d tests/QualityTools/",
"test:update": "composer update -d tests/QualityTools/",
"lint": "php-cs-fixer fix -v",
"test:types": "tests/QualityTools/vendor/bin/phpstan analyse --ansi",
"test:unit": "phpunit --colors=always --verbose",
"test:lint": "php-cs-fixer fix -v --dry-run",
"test": [
"@test:lint",
"@test:unit"
]
}
}