Skip to content

Commit

Permalink
Merge pull request #343 from web3p/add-eip-712
Browse files Browse the repository at this point in the history
Add EIP712 TypedDataEncoder
  • Loading branch information
sc0Vu authored Jan 21, 2024
2 parents 779a095 + 545a1fc commit 8b4c5bf
Show file tree
Hide file tree
Showing 11 changed files with 5,147 additions and 33 deletions.
33 changes: 13 additions & 20 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,21 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">

<testsuite name="Web3.php unit test">
<directory suffix="Test.php">./test/unit</directory>
</testsuite>

<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
</phpunit>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
<testsuite name="Web3.php unit test">
<directory suffix="Test.php">./test/unit</directory>
</testsuite>
<php>
<ini name="memory_limit" value="256M"/>
</php>
</phpunit>
Loading

0 comments on commit 8b4c5bf

Please sign in to comment.