-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 797 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 797 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
28
29
30
31
32
{
"name": "league/glide-symfony",
"description": "Glide adapter for Symfony",
"homepage": "http://glide.thephpleague.com",
"license": "MIT",
"authors" : [
{
"name": "Jonathan Reinink",
"email": "jonathan@reinink.ca",
"homepage": "http://reinink.ca"
},
{
"name": "Robin Chalas",
"email": "robin@baksla.sh",
"homepage": "https://baksla.sh"
}
],
"require": {
"php": "^8.1",
"league/glide": "^2.0|^3.0",
"symfony/http-foundation": "^5|^6|^7|^8"
},
"require-dev": {
"mockery/mockery": "^1.3.3",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"League\\Glide\\": "src/"
}
}
}