Skip to content

Commit e244cd0

Browse files
committed
first commit
0 parents  commit e244cd0

File tree

13 files changed

+700
-0
lines changed

13 files changed

+700
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

.idea/SyncMigration.iml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

Lines changed: 266 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# The MIT License (MIT)
2+
3+
Copyright (c) 2017 Bader Almutairi <bderemail@gmail.com >
4+
5+
> Permission is hereby granted, free of charge, to any person obtaining a copy
6+
> of this software and associated documentation files (the "Software"), to deal
7+
> in the Software without restriction, including without limitation the rights
8+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
> copies of the Software, and to permit persons to whom the Software is
10+
> furnished to do so, subject to the following conditions:
11+
>
12+
> The above copyright notice and this permission notice shall be included in
13+
> all copies or substantial portions of the Software.
14+
>
15+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
> THE SOFTWARE.

README.md

Whitespace-only changes.

composer.json

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
{
2+
"name": "awssat/laravel-sync-migration",
3+
"type": "library",
4+
"description": "Developer tool helps to sync migrations without refreshing the database",
5+
"keywords": [
6+
"Laravel",
7+
"Developer",
8+
"Tool",
9+
"Package",
10+
"Sync",
11+
"Database",
12+
"Mysql",
13+
"Php"
14+
],
15+
"homepage": "https://github.com/awssat/laravel-sync-migration",
16+
"license": "MIT",
17+
"authors": [
18+
{
19+
"name": "Bader Almutairi",
20+
"email": "bderemail@gmail.com"
21+
}
22+
],
23+
"require": {
24+
"php": "~5.6|~7.0",
25+
"illuminate/support": "5.6.* || 5.7.*",
26+
"spatie/regex": "^1.3",
27+
"doctrine/dbal": "^2.8"
28+
},
29+
"autoload": {
30+
"psr-4": {
31+
"awssat\\Visits\\": "src"
32+
}
33+
},
34+
"scripts": {
35+
"test": "phpunit",
36+
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
37+
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
38+
},
39+
"extra": {
40+
"branch-alias": {
41+
"dev-master": "1.0-dev"
42+
},
43+
"laravel": {
44+
"providers": [
45+
"Awssat\\SyncMigration\\SyncMigrationServiceProvider"
46+
]
47+
}
48+
},
49+
"config": {
50+
"sort-packages": true
51+
}
52+
}

src/.DS_Store

6 KB
Binary file not shown.

0 commit comments

Comments
 (0)