Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardogobbosouza committed Jul 20, 2023
1 parent 0e927d9 commit 9bcd4a0
Show file tree
Hide file tree
Showing 4 changed files with 93 additions and 84 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ trim_trailing_whitespace = true
[*.md]
trim_trailing_whitespace = false

[*.{php,xml,xml.dist}]
[*.{php,xml,xml.dist,json}]
indent_size = 4
15 changes: 15 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1,16 @@
* text=auto eol=lf

*.blade.php diff=html
*.css diff=css
*.html diff=html
*.md diff=markdown
*.php diff=php

/.github export-ignore
/tests export-ignore
.editorconfig export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.styleci.yml export-ignore
.phpunit-watcher.yml export-ignore
phpunit.xml.dist export-ignore
10 changes: 2 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
node_modules
vendor
composer.phar
/node_modules
/vendor
composer.lock
.DS_Store
Thumbs.db
phpunit.xml
clover.xml
.idea
.vscode
.phpunit.result.cache
150 changes: 75 additions & 75 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,78 +1,78 @@
{
"name": "datalogix/tall-kit",
"description": "A set of components to utilise in your Laravel Blade views using TALL stack.",
"keywords": [
"TALL",
"laravel",
"blade",
"tailwind",
"alphine",
"livewire",
"kit",
"components"
],
"homepage": "https://github.com/datalogix/tall-kit",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Ricardo Gobbo de Souza",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4|^8.0|^8.1|^8.2",
"illuminate/contracts": "^8.0|^9.0|^10.0",
"illuminate/database": "^8.0|^9.0|^9.0",
"illuminate/support": "^8.0|^9.0|^10.0",
"illuminate/view": "^8.0|^9.0|^10.0"
},
"require-dev": {
"league/commonmark": "^1.6|^2.0",
"livewire/livewire": "^2.0",
"lorisleiva/cron-translator": "^0.2|^0.3|^0.4",
"orchestra/testbench": "^6.20|^7.0|^8.0",
"phpunit/phpunit": "^9.5|^10.0",
"spatie/laravel-translatable": "^4.0|^5.0|^6.0",
"spatie/phpunit-watcher": "^1.0"
},
"autoload": {
"psr-4": {
"TALLKit\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"TALLKit\\Tests\\": "tests/"
}
},
"scripts": {
"dev": [
"@composer update",
"@composer test",
"pnpm install",
"pnpm dev"
"name": "datalogix/tall-kit",
"description": "A set of components to utilise in your Laravel Blade views using TALL stack.",
"keywords": [
"TALL",
"laravel",
"blade",
"tailwind",
"alphine",
"livewire",
"kit",
"components"
],
"homepage": "https://github.com/datalogix/tall-kit",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Ricardo Gobbo de Souza",
"email": "[email protected]"
}
],
"test": "vendor/bin/phpunit",
"watch": "vendor/bin/phpunit-watcher watch"
},
"extra": {
"laravel": {
"providers": [
"TALLKit\\TALLKitServiceProvider"
]
}
},
"suggest": {
"league/commonmark": "Required to use the markdown component (^2.0).",
"lorisleiva/cron-translator": "Required to use the cron component (^0.2)."
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
"require": {
"php": "^7.4|^8.0|^8.1|^8.2",
"illuminate/contracts": "^8.0|^9.0|^10.0",
"illuminate/database": "^8.0|^9.0|^9.0",
"illuminate/support": "^8.0|^9.0|^10.0",
"illuminate/view": "^8.0|^9.0|^10.0"
},
"require-dev": {
"league/commonmark": "^1.6|^2.0",
"livewire/livewire": "^2.0",
"lorisleiva/cron-translator": "^0.2|^0.3|^0.4",
"orchestra/testbench": "^6.20|^7.0|^8.0",
"phpunit/phpunit": "^9.5|^10.0",
"spatie/laravel-translatable": "^4.0|^5.0|^6.0",
"spatie/phpunit-watcher": "^1.0"
},
"autoload": {
"psr-4": {
"TALLKit\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"TALLKit\\Tests\\": "tests/"
}
},
"scripts": {
"dev": [
"@composer update",
"@composer test",
"pnpm install",
"pnpm dev"
],
"test": "vendor/bin/phpunit",
"watch": "vendor/bin/phpunit-watcher watch"
},
"extra": {
"laravel": {
"providers": [
"TALLKit\\TALLKitServiceProvider"
]
}
},
"suggest": {
"league/commonmark": "Required to use the markdown component (^2.0).",
"lorisleiva/cron-translator": "Required to use the cron component (^0.2)."
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}

0 comments on commit 9bcd4a0

Please sign in to comment.