-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 899 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 899 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
33
34
35
{
"name": "awcode/monday-php" ,
"type": "library",
"description": "A helper package for using Monday.com API" ,
"keywords": [
"Monday", "Monday.com", "monday-api", "Monday API", "AWcode"
],
"require": {
"php": "^7.1.3|^8.0",
"illuminate/support": "~5.8.0|^6.0|^7.0|^8.0",
"vlucas/phpdotenv": "^3.0|^4.0|^5.0"
},
"autoload": {
"psr-4": { "Awcode\\MondayPHP\\" : "src/" }
},
"authors": [
{
"name": "awcode",
"homepage": "https://awcode.com"
},{
"name": "Mark Walker"
}
],
"extra": {
"laravel": {
"providers": [
"Awcode\\MondayPHP\\MondayPHPServiceProvider"
],
"aliases": {
"Monday": "Awcode\\MondayPHP\\MondayPHPFacade"
}
}
},
"license": "MIT"
}