Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
c42894ce
Commit
c42894ce
authored
Oct 19, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extension installer wip
parent
f130dca1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
29 additions
and
69 deletions
+29
-69
composer.json
extensions/composer/composer.json
+3
-6
Installer.php
extensions/composer/yii/composer/Installer.php
+21
-62
composer.json
extensions/mutex/composer.json
+4
-1
composer.json
framework/composer.json
+1
-0
No files found.
extensions/composer/composer.json
View file @
c42894ce
{
"name"
:
"yiisoft/yii2-composer"
,
"description"
:
"The composer
integration for the Yii framework
"
,
"keywords"
:
[
"yii"
,
"composer"
,
"
install"
,
"update
"
],
"type"
:
"
library
"
,
"description"
:
"The composer
plugin for Yii extension installer
"
,
"keywords"
:
[
"yii"
,
"composer"
,
"
extension installer
"
],
"type"
:
"
composer-plugin
"
,
"license"
:
"BSD-3-Clause"
,
"support"
:
{
"issues"
:
"https://github.com/yiisoft/yii2/issues?state=open"
,
...
...
@@ -18,9 +18,6 @@
}
],
"minimum-stability"
:
"dev"
,
"require"
:
{
"yiisoft/yii2"
:
"*"
},
"autoload"
:
{
"psr-0"
:
{
"yii
\\
composer
\\
"
:
""
}
}
...
...
extensions/composer/yii/composer/Installer.php
View file @
c42894ce
...
...
@@ -10,6 +10,9 @@ namespace yii\composer;
use
Composer\Package\PackageInterface
;
use
Composer\Installer\LibraryInstaller
;
use
Composer\Repository\InstalledRepositoryInterface
;
use
Composer\Script\CommandEvent
;
use
yii\console\Application
;
use
yii\console\Exception
;
/**
* @author Qiang Xue <qiang.xue@gmail.com>
...
...
@@ -17,20 +20,18 @@ use Composer\Repository\InstalledRepositoryInterface;
*/
class
Installer
extends
LibraryInstaller
{
const
EXTRA_WRITABLE
S
=
'yii-writables
'
;
const
EXTRA_EXECUTABLE
S
=
'yii-executables
'
;
const
EXTRA_WRITABLE
=
'writable
'
;
const
EXTRA_EXECUTABLE
=
'executable
'
;
const
EXTRA_CONFIG
=
'yii-config'
;
const
EXTRA_COMMANDS
=
'yii-commands'
;
const
EXTRA_ALIASES
=
'yii-aliases'
;
const
EXTRA_PREINIT
=
'yii-preinit'
;
const
EXTRA_INIT
=
'yii-init'
;
const
EXTRA_BOOTSTRAP
=
'bootstrap'
;
/**
* @inheritdoc
*/
public
function
supports
(
$packageType
)
{
return
$packageType
===
'yii
2
-extension'
;
return
$packageType
===
'yii-extension'
;
}
/**
...
...
@@ -63,81 +64,39 @@ class Installer extends LibraryInstaller
protected
function
addPackage
(
PackageInterface
$package
)
{
$extension
=
[
'name'
=>
$package
->
getPrettyName
()];
$root
=
$package
->
getPrettyName
();
if
(
$targetDir
=
$package
->
getTargetDir
())
{
$root
.=
'/'
.
trim
(
$targetDir
,
'/'
);
}
$root
=
trim
(
$root
,
'/'
);
$extension
=
[
'name'
=>
$package
->
getPrettyName
(),
'version'
=>
$package
->
getVersion
(),
];
$extra
=
$package
->
getExtra
();
if
(
isset
(
$extra
[
self
::
EXTRA_PREINIT
])
&&
is_string
(
$extra
[
self
::
EXTRA_PREINIT
]))
{
$extension
[
self
::
EXTRA_PREINIT
]
=
"<vendor-dir>/
$root
/"
.
ltrim
(
str_replace
(
'\\'
,
'/'
,
$extra
[
self
::
EXTRA_PREINIT
]),
'/'
);
}
if
(
isset
(
$extra
[
self
::
EXTRA_INIT
])
&&
is_string
(
$extra
[
self
::
EXTRA_INIT
]))
{
$extension
[
self
::
EXTRA_INIT
]
=
"<vendor-dir>/
$root
/"
.
ltrim
(
str_replace
(
'\\'
,
'/'
,
$extra
[
self
::
EXTRA_INIT
]),
'/'
);
}
if
(
isset
(
$extra
[
'aliases'
])
&&
is_array
(
$extra
[
'aliases'
]))
{
foreach
(
$extra
[
'aliases'
]
as
$alias
=>
$path
)
{
$extension
[
'aliases'
][
'@'
.
ltrim
(
$alias
,
'@'
)]
=
"<vendor-dir>/
$root
/"
.
ltrim
(
str_replace
(
'\\'
,
'/'
,
$path
),
'/'
);
}
}
if
(
!
empty
(
$aliases
))
{
foreach
(
$aliases
as
$alias
=>
$path
)
{
if
(
strncmp
(
$alias
,
'@'
,
1
)
!==
0
)
{
$alias
=
'@'
.
$alias
;
}
$path
=
trim
(
str_replace
(
'\\'
,
'/'
,
$path
),
'/'
);
$extension
[
'aliases'
][
$alias
]
=
$root
.
'/'
.
$path
;
}
if
(
isset
(
$extra
[
self
::
EXTRA_BOOTSTRAP
])
&&
is_string
(
$extra
[
self
::
EXTRA_BOOTSTRAP
]))
{
$extension
[
'bootstrap'
]
=
$extra
[
self
::
EXTRA_BOOTSTRAP
];
}
$extensions
=
$this
->
loadExtensions
();
$extensions
[
$package
->
get
Id
()]
=
$extension
;
$extensions
[
$package
->
get
UniqueName
()]
=
$extension
;
$this
->
saveExtensions
(
$extensions
);
}
protected
function
removePackage
(
PackageInterface
$package
)
{
$packages
=
$this
->
loadExtensions
();
unset
(
$packages
[
$package
->
get
Id
()]);
unset
(
$packages
[
$package
->
get
UniqueName
()]);
$this
->
saveExtensions
(
$packages
);
}
protected
function
loadExtensions
()
{
$file
=
$this
->
vendorDir
.
'/yii-extensions.php'
;
if
(
!
is_file
(
$file
))
{
return
[];
}
$extensions
=
require
(
$file
);
/** @var string $vendorDir defined in yii-extensions.php */
$n
=
strlen
(
$vendorDir
);
foreach
(
$extensions
as
&
$extension
)
{
if
(
isset
(
$extension
[
'aliases'
]))
{
foreach
(
$extension
[
'aliases'
]
as
$alias
=>
$path
)
{
$extension
[
'aliases'
][
$alias
]
=
'<vendor-dir>'
.
substr
(
$path
,
$n
);
}
}
if
(
isset
(
$extension
[
self
::
EXTRA_PREINIT
]))
{
$extension
[
self
::
EXTRA_PREINIT
]
=
'<vendor-dir>'
.
substr
(
$extension
[
self
::
EXTRA_PREINIT
],
$n
);
}
if
(
isset
(
$extension
[
self
::
EXTRA_INIT
]))
{
$extension
[
self
::
EXTRA_INIT
]
=
'<vendor-dir>'
.
substr
(
$extension
[
self
::
EXTRA_INIT
],
$n
);
}
}
return
$extensions
;
return
is_file
(
$file
)
?
require
(
$file
)
:
[];
}
protected
function
saveExtensions
(
array
$extensions
)
{
$file
=
$this
->
vendorDir
.
'/yii-extensions.php'
;
$array
=
str_replace
(
"'<vendor-dir>"
,
'$vendorDir . \''
,
var_export
(
$extensions
,
true
));
file_put_contents
(
$file
,
"<?php
\n\$
vendorDir = __DIR__;
\n\n
return
$array
;
\n
"
);
file_put_contents
(
$file
,
"<?php
\n
return "
.
var_export
(
$extensions
,
true
)
.
";
\n
"
);
}
...
...
@@ -148,11 +107,11 @@ class Installer extends LibraryInstaller
public
static
function
setPermissions
(
$event
)
{
$options
=
array_merge
([
self
::
EXTRA_WRITABLE
S
=>
[],
self
::
EXTRA_EXECUTABLE
S
=>
[],
self
::
EXTRA_WRITABLE
=>
[],
self
::
EXTRA_EXECUTABLE
=>
[],
],
$event
->
getComposer
()
->
getPackage
()
->
getExtra
());
foreach
((
array
)
$options
[
self
::
EXTRA_WRITABLE
S
]
as
$path
)
{
foreach
((
array
)
$options
[
self
::
EXTRA_WRITABLE
]
as
$path
)
{
echo
"Setting writable:
$path
..."
;
if
(
is_dir
(
$path
))
{
chmod
(
$path
,
0777
);
...
...
@@ -163,7 +122,7 @@ class Installer extends LibraryInstaller
}
}
foreach
((
array
)
$options
[
self
::
EXTRA_EXECUTABLE
S
]
as
$path
)
{
foreach
((
array
)
$options
[
self
::
EXTRA_EXECUTABLE
]
as
$path
)
{
echo
"Setting executable:
$path
..."
;
if
(
is_file
(
$path
))
{
chmod
(
$path
,
0755
);
...
...
extensions/mutex/composer.json
View file @
c42894ce
...
...
@@ -2,7 +2,7 @@
"name"
:
"yiisoft/yii2-mutex"
,
"description"
:
"Mutual exclusion extension for the Yii framework"
,
"keywords"
:
[
"yii"
,
"mutex"
],
"type"
:
"
library
"
,
"type"
:
"
yii-extension
"
,
"license"
:
"BSD-3-Clause"
,
"support"
:
{
"issues"
:
"https://github.com/yiisoft/yii2/issues?state=open"
,
...
...
@@ -23,5 +23,8 @@
},
"autoload"
:
{
"psr-0"
:
{
"yii
\\
mutex
\\
"
:
""
}
},
"extra"
:
{
"bootstrap"
:
"yii
\\
mutex
\\
Extension"
}
}
framework/composer.json
View file @
c42894ce
...
...
@@ -65,6 +65,7 @@
},
"require"
:
{
"php"
:
">=5.4.0"
,
"yiisoft/yii2-composer"
:
"*"
,
"ext-mbstring"
:
"*"
,
"lib-pcre"
:
"*"
,
"phpspec/php-diff"
:
"1.0.*"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment