Skip to content
This repository was archived by the owner on Jun 24, 2020. It is now read-only.

Commit 9093ef3

Browse files
committed
Merge branch 'release/1.0.4'
2 parents 22e7a28 + 0527ce0 commit 9093ef3

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ CHANGELOG
44
To get the diff for a specific change, go to https://github.com/nooku/nooku-installer/commit/xxx where xxx is the change hash.
55
To view the diff between two versions, go to https://github.com/nooku/nooku-installer/compare/v0.1.0...v0.1.1
66

7+
## 1.0.4 (2015-04-21)
8+
9+
* Added - Support for `nooku-framework-joomla` package
10+
711
## 1.0.3 (2015-03-04)
812

913
* Fixed - Fix call to undefined function Composer\Autoload\includeFile() error in Joomla 3.4

src/Nooku/Composer/Installer/NookuFramework.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,6 @@ public function isInstalled(InstalledRepositoryInterface $repo, PackageInterface
5151

5252
protected function _isValidName($packageName)
5353
{
54-
return $packageName === 'nooku/nooku-framework';
54+
return in_array($packageName, array('nooku/nooku-framework', 'nooku/nooku-framework-joomla'));
5555
}
56-
}
56+
}

0 commit comments

Comments
 (0)