Skip to content

Commit 16d6148

Browse files
authored
Merge pull request #2 from driftphp/fix/fixed-deps
Fixed deps
2 parents a041cb2 + 5c277dd commit 16d6148

File tree

3 files changed

+19
-10
lines changed

3 files changed

+19
-10
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
version: 2
22
jobs:
3-
test-php72:
3+
test-php73:
44
docker:
5-
- image: circleci/php:7.2-cli
5+
- image: circleci/php:7.3-cli
66

77
working_directory: ~/project
88
steps:
@@ -49,5 +49,5 @@ workflows:
4949
version: 2
5050
test:
5151
jobs:
52-
- test-php72
52+
- test-php73
5353
- test-php74

.formatter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use-sort:
77
strict: true
88
header: |
99
/*
10-
* This file is part of the Drift Http Kernel
10+
* This file is part of the Drift Project
1111
*
1212
* For the full copyright and license information, please view the LICENSE
1313
* file that was distributed with this source code.

composer.json

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,29 @@
11
{
22
"name": "drift/mysql-bundle",
3+
"description": "Mysql Bundle for DriftPHP, a framework on top of Symfony and ReactPHP components",
34
"type": "library",
45
"license": "MIT",
56

7+
"authors": [
8+
{
9+
"name": "Marc Morera",
10+
"email": "[email protected]"
11+
}
12+
],
13+
614
"require": {
7-
"php": "^7.1.3",
15+
"php": "^7.3",
816
"react/mysql": "^0.5.4",
9-
"drift/http-kernel": "^0.1",
10-
"mmoreram/base-bundle": "^2.0.2",
11-
"mmoreram/symfony-bundle-dependencies": "^2.2",
12-
"phpunit/phpunit": "7.5.17"
17+
"drift/http-kernel": "0.1.*",
18+
"mmoreram/base-bundle": "^2.1"
1319
},
1420

1521
"autoload": {
1622
"psr-4": {
1723
"Drift\\Mysql\\": "."
18-
}
24+
},
25+
"exclude-from-classmap": [
26+
"/Tests/"
27+
]
1928
}
2029
}

0 commit comments

Comments
 (0)