<?xml version="1.0" encoding="UTF-8"?>
<feature name="Security">
<!-- Install instructions -->
<install>
<!-- Copy file and parse namespace variable. -->
<copy parseNS="true">
<from>Auth.php</from>
<to>controller/Auth.php</to>
</copy>
<copy parseNS="true">
<from>SecuritySession.php</from>
<to>model/SecuritySession.php</to>
</copy>
<!-- Configuration setting change in router -->
<router>
<add><![CDATA[{extend=core/security}]]></add>
</router>
<msg><![CDATA[
NOTICE:
A new model named SecuritySession has been uploaded to the applications model dir.
You must now run orm:schema-tool:create or orm:schema-tool:update depending on if your
database models is already installed.
]]></msg>
</install>
<remove>
<del>controller/Auth.php</del>
<del>model/SecuritySession.php</del>
<!-- Configuration setting change in router -->
<router>
<del><![CDATA[{extend=core/security}]]></del>
</router>
</remove>
</feature>