Skip to content

Commit e6fa5fa

Browse files
author
dcraig-rh
committed
Autodiscovery
1 parent af3ccab commit e6fa5fa

File tree

2 files changed

+33
-22
lines changed

2 files changed

+33
-22
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [1.1.3] - 2017-09-01
6+
### Added
7+
- Add package autodiscovery for Laravel 5.5+
8+
59
## [1.1.2] - 2017-03-20
610
### Fixed
711
- Fix conditional check for framework if framework is ''

composer.json

Lines changed: 29 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,31 @@
11
{
2-
"name": "taskforcedev/laravel-support",
3-
"description": "Laravel support package. Used by other Taskforcedev packages.",
4-
"authors": [
5-
{
6-
"name": "Taskforcedev",
7-
"email": "[email protected]"
8-
}
9-
],
10-
"keywords": ["laravel", "support"],
11-
"require": {
12-
"php": ">=5.6.4",
13-
"illuminate/support": "5.*"
14-
},
15-
"require-dev": {
16-
"phpunit/phpunit": "5.3.*"
17-
},
18-
"autoload": {
19-
"psr-4": {
20-
"Taskforcedev\\LaravelSupport\\": "src/"
21-
}
22-
},
23-
"minimum-stability": "dev"
2+
"name": "taskforcedev/laravel-support",
3+
"description": "Laravel support package. Used by other Taskforcedev packages.",
4+
"authors": [
5+
{
6+
"name": "Taskforcedev",
7+
"email": "[email protected]"
8+
}
9+
],
10+
"keywords": ["laravel", "support"],
11+
"require": {
12+
"php": ">=5.6.4",
13+
"illuminate/support": "5.*"
14+
},
15+
"require-dev": {
16+
"phpunit/phpunit": "5.3.*"
17+
},
18+
"autoload": {
19+
"psr-4": {
20+
"Taskforcedev\\LaravelSupport\\": "src/"
21+
}
22+
},
23+
"minimum-stability": "dev",
24+
"extra": {
25+
"laravel": {
26+
"providers": [
27+
"Taskforcedev\\LaravelSupport\\ServiceProvider"
28+
]
29+
}
30+
}
2431
}

0 commit comments

Comments
 (0)