Skip to content

Commit 2669d68

Browse files
mmachatschekhoward
authored andcommitted
Add a PHP class to abstract the path to the schema (#8)
1 parent 8cad30b commit 2669d68

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

composer.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,10 @@
99
"email": "devops@findologic.com"
1010
}
1111
],
12-
"require": {}
12+
"require": {},
13+
"autoload": {
14+
"psr-0": {
15+
"FINDOLOGIC\\Export\\": "src/main/php/"
16+
}
17+
}
1318
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
3+
namespace FINDOLOGIC\Export;
4+
5+
class Constant
6+
{
7+
public static $XSD_SCHEMA_PATH = __DIR__ . '/../../../resources/findologic.xsd';
8+
}

0 commit comments

Comments
 (0)