-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcomposer.json
49 lines (49 loc) · 1.5 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
{
"name": "hshn/base64-encoded-file",
"description": "Provides handling base64 encoded files, and the integration of symfony/form",
"license": "MIT",
"authors": [
{
"name": "Shota Hoshino",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1.0",
"symfony/http-foundation": "^5.4 || ^6.0 || ^7.0",
"symfony/mime": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"symfony/form": "^5.4 || ^6.0 || ^7.0",
"symfony/serializer": "^5.4 || ^6.0 || ^7.0",
"phpunit/phpunit": "^9.0.0",
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
"symfony/config": "^5.4 || ^6.0 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.0 || ^7.0"
},
"suggest": {
"symfony/form": "to use base64_encoded_file type",
"symfony/serializer": "to convert a base64 string to a Base64EncodedFile object",
"symfony/dependency-injection": "to use the bundle in a Symfony project",
"symfony/http-kernel": "to use the bundle in a Symfony project",
"symfony/config": "to use the bundle in a Symfony project"
},
"scripts": {
"test": "vendor/bin/phpunit -c ."
},
"autoload": {
"psr-4": {
"Hshn\\Base64EncodedFile\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Hshn\\Base64EncodedFile\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "5.x-dev"
}
}
}