-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 840 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 840 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
{
"name": "themosis/framework",
"description": "The Themosis framework.",
"keywords": ["themosis", "framework", "WordPress", "plugin"],
"license": "GPL-2.0+",
"authors": [{
"name": "Julien Lambé",
"email": "julien@themosis.com",
"homepage": "http://www.themosis.com/"
}],
"autoload": {
"psr-4": {
"Themosis\\": "src/Themosis/"
},
"files": [
"src/Themosis/helpers.php",
"resources/helpers.php"
]
},
"require": {
"php": ">=5.4.0",
"stripe/stripe-php": "2.*",
"braintree/braintree_php": "2.40.1",
"illuminate/routing": "5.4.*",
"illuminate/http": "5.4.*",
"illuminate/view": "5.4.*",
"firebase/php-jwt": "^5.0",
"dg/composer-cleaner": "^2.0"
}
}