-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 916 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 916 Bytes
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
{
"name": "pluritech/image-php",
"description": "This package has the aim of upload images (only gif, jpg and png for now) and resize automatically them according with configuration pre-configured.",
"keywords": ["images", "php", "pluritech","automatic resize"],
"homepage": "https://github.com/Pluritech/image-php",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Guilherme Augusto Silva Valentim",
"email": "valentim.guilherme@gmail.com",
"homepage": "https://www.pluritech.com.br"
},
{
"name": "Natália Gonçalves Machado",
"email": "nataliagoncalvesmachado@gmail.com",
"homepage": "https://www.pluritech.com.br"
}
],
"require": {
"php": ">=5.3.3",
"ext-gd": "*"
},
"autoload": {
"psr-4": {"ImagePhp\\": "src/ImagePhp"}
}
}