-
Notifications
You must be signed in to change notification settings - Fork 71
/
composer.json
68 lines (68 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
68
{
"name": "algolia/search-bundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Algolia",
"email": "[email protected]"
}
],
"prefer-stable": true,
"require": {
"php": ">= 8.2",
"algolia/algoliasearch-client-php": "^3.0",
"doctrine/event-manager": "^1.1 || ^2.0",
"doctrine/persistence": "^2.1 || ^3.0",
"symfony/filesystem": "^7.0",
"symfony/property-access": "^7.0",
"symfony/serializer": "^7.0"
},
"autoload": {
"psr-4": {
"Algolia\\SearchBundle\\": "src/"
}
},
"conflict": {
"doctrine/mongodb-odm": "< 1.3"
},
"autoload-dev": {
"psr-4": {
"Algolia\\SearchBundle\\": "tests/"
}
},
"require-dev": {
"ext-json": "*",
"doctrine/doctrine-bundle": "^2.12",
"doctrine/orm": "^2.5",
"friendsofphp/php-cs-fixer": "^v3.54.0",
"jms/serializer-bundle": "^5.4.0",
"friendsofphp/proxy-manager-lts": "*",
"phpunit/phpunit": "^8.5 || ^9.0",
"roave/security-advisories": "dev-master",
"symfony/framework-bundle": "^7.0",
"symfony/phpunit-bridge": "^7.0",
"symfony/proxy-manager-bridge": "*",
"symfony/yaml": "^7.0"
},
"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 -c phpstan.neon.dist --ansi --memory-limit=-1",
"test:unit": "XDEBUG_MODE=coverage phpunit --colors=always --verbose",
"test:lint": "PHP_CS_FIXER_IGNORE_ENV=true php-cs-fixer fix -v --dry-run",
"test": [
"@test:lint",
"@test:unit"
]
}
}