Skip to content

Commit b5448fd

Browse files
committed
init
0 parents  commit b5448fd

Some content is hidden

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

73 files changed

+114484
-0
lines changed

.gitattributes

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
* text=auto
2+
3+
.gitattributes export-ignore
4+
.gitignore export-ignore
5+
.styleci.yml export-ignore
6+
.travis.yml export-ignore
7+
phpunit.xml.dist export-ignore
8+
phpstan.neon.dist export-ignore
9+
/tests export-ignore

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/node_modules
2+
/vendor
3+
/.idea
4+
composer.lock
5+
npm-debug.log
6+
yarn-error.log
7+
.DS_Store
8+
Thumbs.dbg

LICENSE.text

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) Mohamed Said
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.

composer.json

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "writingink/wink",
3+
"description": "Wink Publishing Framework.",
4+
"keywords": ["framework", "laravel", "blog"],
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "Mohamed Said",
9+
"email": "[email protected]"
10+
}
11+
],
12+
"require": {
13+
"php": "^7.1",
14+
"laravel/framework": "~5.7"
15+
},
16+
"autoload": {
17+
"psr-4": {
18+
"Wink\\": "src/"
19+
}
20+
},
21+
"extra": {
22+
"laravel": {
23+
"providers": [
24+
"Wink\\WinkServiceProvider"
25+
]
26+
}
27+
},
28+
"config": {
29+
"sort-packages": true
30+
},
31+
"minimum-stability": "dev",
32+
"prefer-stable": true
33+
}

config/wink.php

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?php
2+
3+
return [
4+
/*
5+
|--------------------------------------------------------------------------
6+
| Wink Database Connection
7+
|--------------------------------------------------------------------------
8+
*/
9+
10+
'database_connection' => env('WINK_DB_CONNECTION', 'wink'),
11+
12+
/*
13+
|--------------------------------------------------------------------------
14+
| Wink Uploads Disk
15+
|--------------------------------------------------------------------------
16+
*/
17+
18+
'storage_disk' => env('WINK_STORAGE_DISK', 'local'),
19+
];

package.json

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"private": true,
3+
"scripts": {
4+
"dev": "npm run development",
5+
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
6+
"watch": "npm run development -- --watch",
7+
"watch-poll": "npm run watch -- --watch-poll",
8+
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
9+
"prod": "npm run production",
10+
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
11+
},
12+
"devDependencies": {
13+
"axios": "^0.18",
14+
"bootstrap": "^4.0.0",
15+
"cross-env": "^5.1",
16+
"jquery": "^3.2",
17+
"laravel-mix": "^2.0",
18+
"lodash": "^4.17.5",
19+
"moment": "^2.10.6",
20+
"popper.js": "^1.12",
21+
"vue": "^2.5.7",
22+
"vue-router": "^3.0.1",
23+
"quill": "1.3.6",
24+
"vue-textarea-autosize": "^1.0.4"
25+
}
26+
}

0 commit comments

Comments
 (0)