Qiang Xue
12 years ago
2 changed files with 80 additions and 0 deletions
@ -0,0 +1,27 @@
|
||||
{ |
||||
"name": "yiisoft/yii2-composer", |
||||
"description": "The composer integration for the Yii framework", |
||||
"keywords": ["yii", "composer", "install", "update"], |
||||
"type": "library", |
||||
"license": "BSD-3-Clause", |
||||
"support": { |
||||
"issues": "https://github.com/yiisoft/yii2/issues?state=open", |
||||
"forum": "http://www.yiiframework.com/forum/", |
||||
"wiki": "http://www.yiiframework.com/wiki/", |
||||
"irc": "irc://irc.freenode.net/yii", |
||||
"source": "https://github.com/yiisoft/yii2" |
||||
}, |
||||
"authors": [ |
||||
{ |
||||
"name": "Qiang Xue", |
||||
"email": "qiang.xue@gmail.com" |
||||
} |
||||
], |
||||
"minimum-stability": "dev", |
||||
"require": { |
||||
"yiisoft/yii2": "dev-master" |
||||
}, |
||||
"autoload": { |
||||
"psr-0": { "yii\\composer": "" } |
||||
} |
||||
} |
@ -0,0 +1,53 @@
|
||||
<?php |
||||
/** |
||||
* @link http://www.yiiframework.com/ |
||||
* @copyright Copyright (c) 2008 Yii Software LLC |
||||
* @license http://www.yiiframework.com/license/ |
||||
*/ |
||||
|
||||
namespace yii\composer; |
||||
|
||||
use Composer\Script\CommandEvent; |
||||
|
||||
/** |
||||
* InstallHandler is called by Composer after it installs/updates the current package. |
||||
* |
||||
* @author Qiang Xue <qiang.xue@gmail.com> |
||||
* @since 2.0 |
||||
*/ |
||||
class InstallHandler |
||||
{ |
||||
/** |
||||
* Sets the correct permissions of files and directories. |
||||
* @param CommandEvent $event |
||||
*/ |
||||
public static function setPermissions($event) |
||||
{ |
||||
$options = array_merge(array( |
||||
'writable' => array(), |
||||
'executable' => array(), |
||||
), $event->getComposer()->getPackage()->getExtra()); |
||||
|
||||
foreach ((array)$options['writable'] as $path) { |
||||
echo "Setting writable: $path ..."; |
||||
if (is_dir($path)) { |
||||
chmod($path, 0777); |
||||
echo "done\n"; |
||||
} else { |
||||
echo "The directory was not found: " . getcwd() . DIRECTORY_SEPARATOR . $path; |
||||
return; |
||||
} |
||||
} |
||||
|
||||
foreach ((array)$options['executable'] as $path) { |
||||
echo "Setting executable: $path ..."; |
||||
if (is_dir($path)) { |
||||
chmod($path, 0755); |
||||
echo "done\n"; |
||||
} else { |
||||
echo "The file was not found: " . getcwd() . DIRECTORY_SEPARATOR . $path; |
||||
return; |
||||
} |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue