Skip to content

Commit

Permalink
Made unittests work
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryangr0 committed Oct 12, 2024
1 parent d3a7706 commit a1d5b34
Show file tree
Hide file tree
Showing 8 changed files with 6,271 additions and 94 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ var/
.composer/
.env
*.private.env.json
auth.json
8 changes: 8 additions & 0 deletions auth.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"http-basic": {
"repo.packagist.com": {
"username": "Ryangr0",
"password": "packagist_uut_8aeaeb1562d097465f8bc9c716ca0bd23f64ff13ba8c1fdc3c7c163fcf71e2c88bfd"
}
}
}
33 changes: 30 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@
"Webgrip\\TelemetryService\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Webgrip\\TelemetryService\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Ryan Grippeling",
Expand All @@ -29,12 +34,34 @@
"nyholm/psr7": "^1.8",
"php-di/php-di": "^7.0",
"guzzlehttp/guzzle": "^7.9",
"symfony/http-foundation": "^7.1"
"symfony/http-foundation": "^7.1",
"monolog/monolog": "^3.7"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42",
"phpmd/phpmd": "^2.15",
"phpspec/prophecy": "^1.19",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "*",
"rector/rector": "^1.0",
"squizlabs/php_codesniffer": "^3.9",
"vimeo/psalm": "^6.0@dev",
"beberlei/assert": "^3.3",
"jangregor/phpstan-prophecy": "^1.0",
"thecodingmachine/phpstan-strict-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.3",
"php-mock/php-mock-prophecy": "^0.1.2",
"symfony/var-dumper": "^7.1"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"tbachert/spi": true
"tbachert/spi": true,
"ergebnis/composer-normalize": true
}
}
},
"repositories": [
{"type": "composer", "url": "https://repo.packagist.com/webgrip/"},
{"packagist.org": false}
]
}
Loading

0 comments on commit a1d5b34

Please sign in to comment.