Skip to content

Commit 0ce9ebc

Browse files
authored
Merge pull request #1 from jsgm/master
Modernize codebase, refactor with strict types
2 parents e9c139a + e82d786 commit 0ce9ebc

7 files changed

Lines changed: 332 additions & 305 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/vendor/
2+
composer.lock

composer.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "jsgm/odds-php",
3+
"type": "library",
4+
"license": "MIT",
5+
"autoload": {
6+
"psr-4": {
7+
"OddsPHP\\": "src/"
8+
}
9+
},
10+
"autoload-dev": {
11+
"psr-4": {
12+
"OddsPHP\\Tests\\": "tests/"
13+
}
14+
},
15+
"authors": [
16+
{
17+
"name": "José Aguilera",
18+
"email": "jose@aguilera.dev"
19+
}
20+
],
21+
"require": {
22+
"php": ">=8.1"
23+
},
24+
"require-dev": {
25+
"phpunit/phpunit": "^11.0"
26+
}
27+
}

0 commit comments

Comments
 (0)