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
8df51a7e
Commit
8df51a7e
authored
Jun 29, 2014
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
made mcrypt a framework requirement
parent
90a62501
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
16 deletions
+7
-16
requirements.php
apps/advanced/requirements.php
+0
-8
requirements.php
apps/basic/requirements.php
+0
-8
requirements.php
framework/requirements/requirements.php
+7
-0
No files found.
apps/advanced/requirements.php
View file @
8df51a7e
...
...
@@ -69,14 +69,6 @@ $requirements = array(
'condition'
=>
extension_loaded
(
'apc'
),
'by'
=>
'<a href="http://www.yiiframework.com/doc-2.0/yii-caching-apccache.html">ApcCache</a>'
,
),
// Additional PHP extensions :
array
(
'name'
=>
'Mcrypt extension'
,
'mandatory'
=>
false
,
'condition'
=>
extension_loaded
(
'mcrypt'
),
'by'
=>
'<a href="http://www.yiiframework.com/doc-2.0/yii-helpers-security.html">Security Helper</a>'
,
'memo'
=>
'Required by encrypt and decrypt methods.'
),
// PHP ini :
'phpSafeMode'
=>
array
(
'name'
=>
'PHP safe mode'
,
...
...
apps/basic/requirements.php
View file @
8df51a7e
...
...
@@ -69,14 +69,6 @@ $requirements = array(
'condition'
=>
extension_loaded
(
'apc'
),
'by'
=>
'<a href="http://www.yiiframework.com/doc-2.0/yii-caching-apccache.html">ApcCache</a>'
,
),
// Additional PHP extensions :
array
(
'name'
=>
'Mcrypt extension'
,
'mandatory'
=>
false
,
'condition'
=>
extension_loaded
(
'mcrypt'
),
'by'
=>
'<a href="http://www.yiiframework.com/doc-2.0/yii-helpers-security.html">Security Helper</a>'
,
'memo'
=>
'Required by encrypt and decrypt methods.'
),
// PHP ini :
'phpSafeMode'
=>
array
(
'name'
=>
'PHP safe mode'
,
...
...
framework/requirements/requirements.php
View file @
8df51a7e
...
...
@@ -39,6 +39,13 @@ return array(
'memo'
=>
'Required for multibyte encoding string processing.'
),
array
(
'name'
=>
'Mcrypt extension'
,
'mandatory'
=>
false
,
'condition'
=>
extension_loaded
(
'mcrypt'
),
'by'
=>
'<a href="http://www.yiiframework.com/doc-2.0/yii-helpers-security.html">Security Helper</a>'
,
'memo'
=>
'Required by encrypt and decrypt methods.'
),
array
(
'name'
=>
'Intl extension'
,
'mandatory'
=>
false
,
'condition'
=>
$this
->
checkPhpExtensionVersion
(
'intl'
,
'1.0.2'
,
'>='
),
...
...
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