Skip to content

Commit 0d89bed

Browse files
authored
Merge pull request #56 from OGSteam/feature/xtense-architecture-phase1
Feature/xtense architecture phase1
2 parents c639e7c + 43c6498 commit 0d89bed

55 files changed

Lines changed: 4519 additions & 17 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
11

22
*.zip
3+
4+
# Composer dependencies — install with: composer install
5+
vendor/
6+
7+
# PHPUnit cache
8+
.phpunit.result.cache
9+

composer.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "ogsteam/mod-xtense",
3+
"description": "OGSpy xtense browser extension backend mod",
4+
"type": "library",
5+
"license": "GPL-3.0-or-later",
6+
"require-dev": {
7+
"phpunit/phpunit": "^13.0",
8+
"monolog/monolog": "^3.9"
9+
},
10+
"scripts": {
11+
"test": "vendor/bin/phpunit"
12+
},
13+
"config": {
14+
"optimize-autoloader": true
15+
}
16+
}

0 commit comments

Comments
 (0)