Skip to content

Commit c389215

Browse files
committed
Updates Namespace and begins the refactor work to align code with PhpDb 0.0.1
Signed-off-by: Joey Smith <jsmith@webinertia.net> Signed-off-by: Joey Smith <jsmith@webinertia.net>
1 parent 6c0f5cd commit c389215

Some content is hidden

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

45 files changed

+626
-836
lines changed

composer.json

Lines changed: 16 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
2-
"name": "laminas/laminas-db-adapter-sqlite",
3-
"description": "SQLite support for laminas-db",
2+
"name": "php-db/phpdb-adapter-sqlite",
3+
"description": "SQLite support for php-db",
44
"license": "BSD-3-Clause",
55
"keywords": [
6-
"laminas",
6+
"php-db",
77
"sqlite",
88
"db"
99
],
10-
"homepage": "https://github.com/axleus/laminas-db-adapter-sqlite/discussions",
10+
"homepage": "https://github.com/php-db/phpdb-adapter-sqlite/discussions",
1111
"support": {
12-
"issues": "https://github.com/alxeus/laminas-db-adapter-sqlite/issues",
13-
"source": "https://github.com/axleus/laminas-db-adapter-sqlite",
14-
"forum": "https://github.com/axleus/laminas-db-adapter-sqlite/discussions"
12+
"issues": "https://github.com/php-db/phpdb-adapter-sqlite/issues",
13+
"source": "https://github.com/php-db/phpdb-adapter-sqlite",
14+
"forum": "https://github.com/php-db/phpdb-adapter-sqlite/discussions"
1515
},
1616
"minimum-stability": "dev",
1717
"prefer-stable": true,
@@ -25,24 +25,17 @@
2525
}
2626
},
2727
"extra": {
28-
"laminas": {
29-
"component": "Laminas\\Db\\Sqlite",
30-
"config-provider": "Laminas\\Db\\Sqlite\\ConfigProvider"
28+
"php-db": {
29+
"config-provider": "PhpDb\\Adapter\\Sqlite\\ConfigProvider"
3130
}
3231
},
33-
"repositories": [
34-
{
35-
"type": "vcs",
36-
"url": "https://github.com/axleus/laminas-db"
37-
}
38-
],
3932
"require": {
40-
"php": "~8.3.0 || ~8.4.0",
41-
"laminas/laminas-db": "dev-adapter-migration-mysql-refactor",
42-
"ext-pdo": "*",
43-
"ext-pdo_sqlite": "*"
33+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
34+
"php-db/phpdb": "0.0.x-dev"
4435
},
4536
"require-dev": {
37+
"ext-pdo": "*",
38+
"ext-pdo_sqlite": "*",
4639
"laminas/laminas-coding-standard": "^3.0.1",
4740
"phpunit/phpunit": "^11.5.15",
4841
"psalm/plugin-phpunit": "^0.19.2",
@@ -53,13 +46,13 @@
5346
},
5447
"autoload": {
5548
"psr-4": {
56-
"Laminas\\Db\\Sqlite\\": "src/"
49+
"PhpDb\\Adapter\\Sqlite\\": "src/"
5750
}
5851
},
5952
"autoload-dev": {
6053
"psr-4": {
61-
"LaminasTest\\Db\\Sqlite\\": "test/unit/",
62-
"LaminasIntegrationTest\\Db\\Sqlite\\": "test/integration/"
54+
"PhpDbTest\\Adapter\\Sqlite\\": "test/unit/",
55+
"PhpDbIntegrationTest\\Adapter\\Sqlite\\": "test/integration/"
6356
}
6457
},
6558
"scripts": {

0 commit comments

Comments
 (0)