-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 941 Bytes
/
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
{
"name": "nerea.enrique/search",
"type": "project",
"require": {
"jolicode/elastically": "^1.8",
"symfony/framework-bundle": "^7.0",
"symfony/flex": "^2.4",
"symfony/console": "^7.0",
"symfony/runtime": "^7.0",
"symfony/dotenv": "^7.0"
},
"autoload": {
"psr-4": {
"NereaEnrique\\Search\\": "src/",
"NereaEnrique\\Search\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Nerea Enrique",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"symfony/flex": true,
"symfony/runtime": true
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
},
"require-dev": {
"symfony/var-dumper": "^7.0"
}
}