Skip to content

Commit

Permalink
chore: initial commit 🔥
Browse files Browse the repository at this point in the history
Signed-off-by: Fery Wardiyanto <[email protected]>
  • Loading branch information
feryardiant committed Jun 22, 2023
1 parent f1fdb4c commit c0f9d40
Show file tree
Hide file tree
Showing 29 changed files with 1,209 additions and 971 deletions.
8 changes: 7 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,11 @@ trim_trailing_whitespace = true
insert_final_newline = false
trim_trailing_whitespace = false

[*.{css,js,svg,xml,yml,yaml}]
[*.{css,js,ts,svg,xml,yml,yaml}]
indent_size = 2

[resources/**.conf]
indent_style = tab

[docker-compose.yml]
indent_size = 4
31 changes: 11 additions & 20 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,14 @@

# Exclude unused files
# see: https://redd.it/2jzp6k
# .codeclimate.yml export-ignore
# .coveralls.yml export-ignore
# .editorconfig export-ignore
# .gitattributes export-ignore
# .gitignore export-ignore
# .github export-ignore
.github/README.md export-ignore
# .vscode export-ignore
CHANGELOG.md export-ignore
composer.lock export-ignore
# phpunit.* export-ignore
# docs export-ignore
# jsconfig.json export-ignore
# package.json export-ignore
# tailwind.config.* export-ignore
# tests export-ignore
# tsconfig.json export-ignore
# vite.config.* export-ignore
# webpack.mix.* export-ignore
# windi.config.* export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.github export-ignore
.vscode export-ignore
CHANGELOG.md export-ignore
# README.md export-ignore
composer.lock export-ignore
package.json export-ignore
phpunit.xml export-ignore
scripts export-ignore
tests export-ignore
19 changes: 0 additions & 19 deletions .github/README.md

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2022 Creasi.co <hello@creasi.co>
Copyright (c) 2023 Creasi.co <developers@creasi.co>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
[![Version](https://img.shields.io/packagist/v/creasi/laravel-package?style=flat-square)](https://packagist.org/packages/creasi/laravel-package)
[![License](https://img.shields.io/packagist/l/creasi/laravel-package?style=flat-square)](https://github.com/creasico/laravel-package/blob/master/LICENSE)
[![Version](https://img.shields.io/packagist/v/creasi/laravel-nusa?style=flat-square)](https://packagist.org/packages/creasi/laravel-nusa)
[![License](https://img.shields.io/packagist/l/creasi/laravel-nusa?style=flat-square)](https://github.com/creasico/laravel-package/blob/master/LICENSE)
[![Actions Status](https://img.shields.io/github/workflow/status/creasico/laravel-package/Tests/master?style=flat-square&logo=github-actions)](https://github.com/creasico/laravel-package/actions)

# Laravel Package Template
# Laravel Nusa

A Laravel package aim to provide Indonesia Administrative Data based on [cahyadsn/wilayah](https://github.com/cahyadsn/wilayah) that easily integrated with our laravel projects.

**WIP**

Expand Down
27 changes: 13 additions & 14 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "creasi/laravel-package",
"name": "creasi/nusa",
"description": "Laravel Package Template",
"keywords": ["laravel", "package", "template"],
"license": "MIT",
Expand All @@ -11,19 +11,19 @@
}
],
"support": {
"source": "https://github.com/creasico/laravel-package"
"source": "https://github.com/creasico/laravel-nusa"
},
"scripts": {
"fix": [
"pint --preset laravel"
],
"test": [
"vendor/bin/phpunit --colors=always"
"vendor/bin/phpunit --colors=always --coverage-text"
]
},
"autoload": {
"psr-4": {
"Creasi\\Laravel\\": "src"
"Creasi\\Nusa\\": "src"
}
},
"autoload-dev": {
Expand All @@ -32,14 +32,16 @@
}
},
"require": {
"php": "^8.0",
"illuminate/contracts": "^8.0|^9.0"
"php": "^8.1",
"illuminate/contracts": "^10.0",
"illuminate/database": "^10.0",
"illuminate/support": "^10.0"
},
"require-dev": {
"laravel/pint": "^1.1",
"mockery/mockery": "^1.4",
"orchestra/testbench": "^7.5",
"phpunit/phpunit": "^9.5"
"mockery/mockery": "^1.5",
"orchestra/testbench": "^8.5",
"phpunit/phpunit": "^10.1"
},
"config": {
"preferred-install": "dist",
Expand All @@ -48,11 +50,8 @@
"extra": {
"laravel": {
"providers": [
"Creasi\\Laravel\\Package\\ServiceProvider"
],
"aliases": {
"Package": "Creasi\\Laravel\\Package"
}
"Creasi\\Nusa\\ServiceProvider"
]
}
},
"minimum-stability": "dev",
Expand Down
Loading

0 comments on commit c0f9d40

Please sign in to comment.