Skip to content

Commit 421090a

Browse files
committed
Initial version
1 parent f93d85e commit 421090a

File tree

7 files changed

+2268
-1
lines changed

7 files changed

+2268
-1
lines changed

.gitignore

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

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 code-tool
3+
Copyright (c) 2017 code-tool
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

composer.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "code-tool/jaeger-mongodb-symfony-bridge",
3+
"license": "MIT",
4+
"autoload": {
5+
"psr-4": {
6+
"Jaeger\\MongoDb\\Symfony\\": "src/"
7+
}
8+
},
9+
"require": {
10+
"php": ">=7.1",
11+
"symfony/config": "~2 || ~3 || ~4",
12+
"symfony/http-kernel": "~2 || ~3 || ~4",
13+
"symfony/dependency-injection": "~2 || ~3 || ~4",
14+
"code-tool/jaeger-client-php": "~2.7",
15+
"code-tool/jaeger-mongodb-collector": "dev-master as 1.0.0"
16+
},
17+
"require-dev": {
18+
"phpunit/phpunit": "@stable"
19+
},
20+
"minimum-stability": "dev",
21+
"prefer-stable": true
22+
}

0 commit comments

Comments
 (0)