Skip to content

Commit 00e7769

Browse files
authored
fixed invalid key issue (#2)
* key is deprecated, use name instead * adding missing package * adding test dir * composer update and code formatting
1 parent f69e088 commit 00e7769

File tree

5 files changed

+2860
-57
lines changed

5 files changed

+2860
-57
lines changed

composer.json

+33-29
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,36 @@
11
{
2-
"name": "patriziotomato/laravel-jira",
3-
"description": "Easily access the Jira-API in your Laravel Application",
4-
"keywords": ["framework", "laravel"],
5-
"license": "MIT",
6-
"type": "project",
7-
"require": {
8-
"php": ">=7.2",
9-
"laravel/framework": "^6.0",
10-
"lesstif/php-jira-rest-client": "^1.44"
11-
},
12-
"autoload": {
13-
"psr-4": {
14-
"LaravelJira\\": "src/"
15-
}
16-
},
17-
"autoload-dev": {
18-
"psr-4": {
19-
"Tests\\": "tests/"
20-
}
21-
},
22-
"extra": {
23-
"laravel": {
24-
"providers": [
25-
"LaravelJira\\JiraServiceProvider"
26-
],
27-
"aliases": {
28-
"Jira": "LaravelJira\\JiraFacade"
29-
}
30-
}
2+
"name": "patriziotomato/laravel-jira",
3+
"description": "Easily access the Jira-API in your Laravel Application",
4+
"keywords": [
5+
"framework",
6+
"laravel"
7+
],
8+
"license": "MIT",
9+
"type": "project",
10+
"require": {
11+
"php": ">=7.2",
12+
"laravel/framework": "^6.0",
13+
"lesstif/php-jira-rest-client": "^1.44",
14+
"khill/php-duration": "^1.0"
15+
},
16+
"autoload": {
17+
"psr-4": {
18+
"LaravelJira\\": "src/"
3119
}
20+
},
21+
"autoload-dev": {
22+
"psr-4": {
23+
"Tests\\": "tests/"
24+
}
25+
},
26+
"extra": {
27+
"laravel": {
28+
"providers": [
29+
"LaravelJira\\JiraServiceProvider"
30+
],
31+
"aliases": {
32+
"Jira": "LaravelJira\\JiraFacade"
33+
}
34+
}
35+
}
3236
}

0 commit comments

Comments
 (0)