Skip to content

Commit c887f21

Browse files
committed
Update namespace to Obalaweb\LaravelDatabaseSync for all files
1 parent 15a3328 commit c887f21

File tree

10 files changed

+8520
-65
lines changed

10 files changed

+8520
-65
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
vendor

composer.json

Lines changed: 50 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,50 @@
1-
{
2-
"name": "ivan/laravel-database-sync",
3-
"description": "A Laravel package for automatic database synchronization between models",
4-
"type": "library",
5-
"license": "MIT",
6-
"authors": [
7-
{
8-
"name": "Ivan",
9-
"email": "ivan@example.com"
10-
}
11-
],
12-
"require": {
13-
"php": "^8.1",
14-
"laravel/framework": "^10.0|^11.0",
15-
"illuminate/console": "^10.0|^11.0",
16-
"illuminate/support": "^10.0|^11.0"
17-
},
18-
"require-dev": {
19-
"phpunit/phpunit": "^10.0",
20-
"orchestra/testbench": "^8.0|^9.0",
21-
"mockery/mockery": "^1.5"
22-
},
23-
"autoload": {
24-
"psr-4": {
25-
"Ivan\\LaravelDatabaseSync\\": "src/"
26-
}
27-
},
28-
"autoload-dev": {
29-
"psr-4": {
30-
"Ivan\\LaravelDatabaseSync\\Tests\\": "tests/"
31-
}
32-
},
33-
"extra": {
34-
"laravel": {
35-
"providers": [
36-
"Ivan\\LaravelDatabaseSync\\DatabaseSyncServiceProvider"
37-
]
38-
}
39-
},
40-
"config": {
41-
"sort-packages": true,
42-
"optimize-autoloader": true
43-
},
44-
"minimum-stability": "stable",
45-
"prefer-stable": true,
46-
"scripts": {
47-
"test": "phpunit",
48-
"test-coverage": "phpunit --coverage-html coverage"
49-
}
50-
}
1+
{
2+
"name": "obalaweb/laravel-database-sync",
3+
"description": "A Laravel package for automatic database synchronization between models",
4+
"type": "library",
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "Obala Joseph Ivan",
9+
"email": "info@codprez.com"
10+
}
11+
],
12+
"require": {
13+
"php": "^8.1",
14+
"laravel/framework": "^10.0|^11.0",
15+
"illuminate/console": "^10.0|^11.0",
16+
"illuminate/support": "^10.0|^11.0"
17+
},
18+
"require-dev": {
19+
"phpunit/phpunit": "^10.0",
20+
"orchestra/testbench": "^8.0|^9.0",
21+
"mockery/mockery": "^1.5"
22+
},
23+
"autoload": {
24+
"psr-4": {
25+
"Obalaweb\\LaravelDatabaseSync\\": "src/"
26+
}
27+
},
28+
"autoload-dev": {
29+
"psr-4": {
30+
"Obalaweb\\LaravelDatabaseSync\\Tests\\": "tests/"
31+
}
32+
},
33+
"extra": {
34+
"laravel": {
35+
"providers": [
36+
"Obalaweb\\LaravelDatabaseSync\\DatabaseSyncServiceProvider"
37+
]
38+
}
39+
},
40+
"config": {
41+
"sort-packages": true,
42+
"optimize-autoloader": true
43+
},
44+
"minimum-stability": "stable",
45+
"prefer-stable": true,
46+
"scripts": {
47+
"test": "phpunit",
48+
"test-coverage": "phpunit --coverage-html coverage"
49+
}
50+
}

0 commit comments

Comments
 (0)