<?xml version="1.0"?>
<ruleset name="My PEAR">
 <description>The PEAR standard, but warnings at 90 chars.</description>

 <!-- Include the whole PEAR standard -->
 <rule ref="PEAR">
    <exclude name="PEAR.WhiteSpace.ScopeIndent"/>
    <exclude name="PEAR.NamingConventions.ValidVariableName" />
     <exclude name="PEAR.NamingConventions.ValidFunctionName" />
  </rule>
 
 <!-- Lines can be no longer than x chars -->
 <rule ref="Generic.Files.LineLength">
  <properties>
   <property name="lineLimit" value="120"/>
  </properties>
 </rule>
 
 <rule ref="Generic.WhiteSpace.ScopeIndent">
    <properties>
      <property name="indent" value="4"/>
    </properties>
  </rule>
</ruleset>
