-
Notifications
You must be signed in to change notification settings - Fork 100
/
composer.json
36 lines (36 loc) · 973 Bytes
/
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
{
"name": "ignited/laravel-omnipay",
"description": "Integrates Omnipay with Laravel and provides an easy configuration.",
"keywords": ["omnipay", "payments", "laravel"],
"license": "MIT",
"authors": [
{
"name": "Alex Whiteside",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2.5|^8.0",
"illuminate/support": "~6|~7|~8|~9|~10|~11",
"omnipay/common": "~3.0"
},
"autoload": {
"psr-0": {
"Ignited\\LaravelOmnipay": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
},
"laravel": {
"providers": [
"Ignited\\LaravelOmnipay\\LaravelOmnipayServiceProvider"
],
"aliases": {
"Omnipay": "Ignited\\LaravelOmnipay\\Facades\\OmnipayFacade"
}
}
},
"minimum-stability": "dev"
}