Skip to content

Commit

Permalink
Phone field features
Browse files Browse the repository at this point in the history
  • Loading branch information
bissolli committed Nov 12, 2018
1 parent edf9607 commit 897ec5f
Show file tree
Hide file tree
Showing 20 changed files with 34,108 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
; This file is for unifying the coding style for different editors and IDEs.
; More information at http://editorconfig.org

root = true

[*]
charset = utf-8
indent_size = 4
indent_style = space
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
max_line_length = 120

[*.md]
trim_trailing_whitespace = false
20 changes: 20 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"extends": [
"eslint:recommended",
"plugin:vue/essential",
"prettier"
],
"parserOptions": {
"ecmaVersion": 2017
},
"globals": {
"Nova": true
},
"env": {
"browser": true,
"node": true
},
"rules": {
"vue/html-indent": ["error", 4]
}
}
13 changes: 13 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Path-based git attributes
# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html

# Ignore all test and documentation with "export-ignore".
/.gitattributes export-ignore
/.gitignore export-ignore
/.travis.yml export-ignore
/phpunit.xml.dist export-ignore
/.scrutinizer.yml export-ignore
/.styleci.yml export-ignore
/tests export-ignore
/.editorconfig export-ignore
/docs export-ignore
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/.idea
/vendor
/node_modules
package-lock.json
composer.phar
composer.lock
phpunit.xml
.phpunit.result.cache
.DS_Store
Thumbs.db
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"printWidth": 100,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5"
}
1 change: 1 addition & 0 deletions .styleci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
preset: laravel
39 changes: 39 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"name": "bissolli/nova-phone-field",
"description": "A phone field for Laravel Nova apps.",
"keywords": [
"laravel",
"nova",
"phone mask",
"input mask"
],
"homepage": "https://github.com/bissolli/nova-phone-field",
"license": "MIT",
"authors": [
{
"name": "Gustavo Bissolli",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.1.0"
},
"autoload": {
"psr-4": {
"Bissolli\\NovaPhoneField\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Bissolli\\NovaPhoneField\\FieldServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}
Empty file added dist/css/field.css
Empty file.
Loading

0 comments on commit 897ec5f

Please sign in to comment.