Skip to content

Commit 6225d23

Browse files
committed
LNX-332 - Initial commit for RUMv2 support
1 parent 26b4f08 commit 6225d23

6 files changed

Lines changed: 1197 additions & 0 deletions

File tree

composer.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,14 @@
1717
"psr-4": {
1818
"Stackify\\": "src/Stackify"
1919
}
20+
},
21+
"autoload-dev": {
22+
"psr-4": {
23+
"Stackify\\Tests\\": "tests/"
24+
}
25+
},
26+
"require-dev": {
27+
"phpunit/phpunit": "^5",
28+
"phpunit/php-timer": "^1.0.6"
2029
}
2130
}

phpunit.xml.dist

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit backupGlobals="false"
3+
backupStaticAttributes="false"
4+
beStrictAboutTestsThatDoNotTestAnything="false"
5+
bootstrap="tests/bootstrap.php"
6+
colors="true"
7+
convertErrorsToExceptions="true"
8+
convertNoticesToExceptions="true"
9+
convertWarningsToExceptions="true"
10+
processIsolation="false"
11+
stopOnError="false"
12+
stopOnFailure="false"
13+
verbose="true"
14+
>
15+
<testsuites>
16+
<testsuite name="Stackify PHP Logger Test Suite">
17+
<directory suffix="Test.php">./tests</directory>
18+
</testsuite>
19+
</testsuites>
20+
<php>
21+
<ini name="memory_limit" value="2048M" />
22+
<ini name="stackify.auto_prepend_library" value="0" />
23+
</php>
24+
</phpunit>
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?php
2+
3+
namespace Stackify\Exceptions;
4+
5+
class RumValidationException extends StackifyException {}

0 commit comments

Comments
 (0)