Browse Source

Added composer extension.

tags/2.0.0-alpha
Qiang Xue 12 years ago
parent
commit
a968895423
  1. 27
      extensions/composer/composer.json
  2. 53
      extensions/composer/yii/composer/InstallHandler.php

27
extensions/composer/composer.json

@ -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": "" }
}
}

53
extensions/composer/yii/composer/InstallHandler.php

@ -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…
Cancel
Save