1
0
mirror of https://github.com/Intervention/image.git synced 2025-01-18 04:38:26 +01:00
intervention_image/composer.json

36 lines
910 B
JSON
Raw Normal View History

2014-05-10 20:28:08 +02:00
{
"name": "intervention/image",
2021-10-21 14:32:05 +02:00
"description": "PHP image manipulation",
2022-04-19 19:20:13 +02:00
"homepage": "https://image.intervention.io/",
2014-05-14 15:44:34 +02:00
"keywords": ["image", "gd", "imagick", "laravel", "watermark", "thumbnail"],
2014-05-10 20:28:08 +02:00
"license": "MIT",
"authors": [
{
"name": "Oliver Vogel",
2022-04-19 19:50:26 +02:00
"email": "oliver@intervention.io",
2022-04-19 19:20:13 +02:00
"homepage": "https://intervention.io/"
2014-05-10 20:28:08 +02:00
}
],
"require": {
2023-06-09 15:58:29 +02:00
"php": "^8.1",
2022-01-02 10:21:10 +01:00
"intervention/gif": "^3.0",
2021-10-21 14:32:05 +02:00
"intervention/mimesniffer": "^0.4.2"
2014-05-10 20:28:08 +02:00
},
"require-dev": {
"phpunit/phpunit": "^9",
2022-05-21 20:04:33 +02:00
"mockery/mockery": "^1.4",
"phpstan/phpstan": "^1"
2014-05-10 20:28:08 +02:00
},
"autoload": {
2014-09-25 18:42:12 +02:00
"psr-4": {
2021-10-21 14:32:05 +02:00
"Intervention\\Image\\": "src"
2014-05-10 20:28:08 +02:00
}
},
2021-10-21 14:32:05 +02:00
"autoload-dev": {
"psr-4": {
"Intervention\\Image\\Tests\\": "tests"
2015-07-10 16:44:25 +02:00
}
2022-01-02 10:25:40 +01:00
},
"minimum-stability": "alpha"
2014-05-10 20:28:08 +02:00
}