Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
1d1a275
implements ArrayAccess, Iterator for config container.
c9s Apr 19, 2012
752a880
Update testing sample package.ini
c9s Apr 19, 2012
086fe31
Update test config
c9s Apr 19, 2012
b6f00a0
Add new INIParser class.
c9s Apr 19, 2012
fe71f60
ant-build CI config files
c9s May 23, 2012
18c0930
Merge branch 'master' into develop
c9s May 23, 2012
f48cc3f
Fix LibraryInstaller
c9s May 23, 2012
235798a
Fix package.ini style
c9s May 23, 2012
4bed0b9
Rename packages
c9s Jun 9, 2012
ecf3db0
progress handler setter
c9s Jun 9, 2012
1bc7ccd
check download size
c9s Jun 9, 2012
9b9bc2a
Rename bundle command to install command.
c9s Jun 9, 2012
e4a3cf5
Update todo
c9s Jun 9, 2012
04aa0d8
--quiet option support (curl downloader)
c9s Jun 9, 2012
c3a881c
Merge branch 'develop' of git.corneltek.com:php/Onion into develop
c9s Jun 14, 2012
41fe0e5
Update readme
c9s Jun 14, 2012
d215cb2
update readme for new command
c9s Jun 14, 2012
1252c72
Fix CurlKit class name
c9s Jun 19, 2012
185f1df
Remove PEARX tests
c9s Jun 19, 2012
b3a3887
remove tmp files
c9s Jun 19, 2012
aac1b01
Add tests/tmp to .gitignore file
c9s Jun 19, 2012
bb0ea97
Remvoe TestApp tests
c9s Jun 19, 2012
61c5ec1
Add new_package.ini
c9s Jun 19, 2012
0d59eec
remove var_dump
c9s Jun 19, 2012
b2367d0
rename getDownloader to createDownloader
c9s Jun 19, 2012
451c9a7
add base option to installer command
c9s Jun 19, 2012
fd5d944
document installer flow in doc/InstallerFlow.md
c9s Jun 19, 2012
e379380
use Onion\Installer
c9s Jun 19, 2012
828e2dd
Add workspace option to main Installer
c9s Jun 19, 2012
8687062
Update onion binary
c9s Jun 20, 2012
704953b
Let quiet option works!
c9s Jun 20, 2012
e50e312
Update onion binary
c9s Jun 20, 2012
167c786
Fix progress bar
c9s Jun 20, 2012
c1d806f
bump version
c9s Jun 23, 2012
43f7187
Build package.xml at 2012-06-23
c9s Jun 23, 2012
bd2d4ec
add script role
jaceju Jun 26, 2012
f680cee
Enable shell script role and fix installation.
jaceju Jun 26, 2012
8a9fd39
Use only bin folder to put shell script.
jaceju Jun 26, 2012
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
use Onion\Installer
  • Loading branch information
c9s committed Jun 19, 2012
commit e37938043488699e00d02943b3ab636ddb13fb2b
3 changes: 2 additions & 1 deletion src/Onion/Command/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
namespace Onion\Command;
use CLIFramework\Command;
use Onion\Dependency\DependencyResolver;
use Onion\Installer;

/**
* Bundle/Install dependencies
Expand Down Expand Up @@ -64,7 +65,7 @@ function execute()
$pool = $dr->getPool();
// $packages = $pool->getPackages();

$installer = new \Onion\Installer( $pool );
$installer = new Installer( $pool );
$installer->install();
$logger->info('Done');
}
Expand Down