-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·49 lines (49 loc) · 1.52 KB
/
composer.json
File metadata and controls
executable file
·49 lines (49 loc) · 1.52 KB
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
{
"name": "samuelvi/spreadsheet-translator-symfony-bundle",
"license": "MIT",
"type": "symfony-bundle",
"description": "Spreadsheet Translator Bundle - Translate your web site from excel files (local, google drive with or without auth, onedrive with or without auth)",
"keywords": ["spreadsheet to translation symfony bundle", "symfony bundle translator", "symfony translator utilities", "symfony translation utilities"],
"authors": [
{
"name": "Samuel Vicent",
"email": "samuelvicent@gmail.com"
}
],
"require": {
"samuelvi/spreadsheet-translator-core": "^8.0",
"php": ">=8.4",
"symfony/config": "^7.0",
"symfony/dependency-injection": "^7.0",
"symfony/yaml": "^7.0",
"symfony/http-kernel": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"rector/jack": "^0.2.9",
"rector/rector": "^2.1",
"symfony/phpunit-bridge": "^7.0"
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-html coverage",
"rector": "rector process",
"rector:dry": "rector process --dry-run"
},
"autoload": {
"psr-4": {
"Atico\\Bundle\\SpreadsheetTranslatorBundle\\": "./"
}
},
"autoload-dev": {
"psr-4": {
"Atico\\Bundle\\SpreadsheetTranslatorBundle\\Tests\\": "tests/"
}
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "^7.0"
}
}
}