Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
atmonshi committed Jun 29, 2023
1 parent 7888b6e commit 15efbf0
Show file tree
Hide file tree
Showing 53 changed files with 12,344 additions and 3,171 deletions.
15 changes: 15 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
root = true

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

[*.md]
trim_trailing_whitespace = false

[*.{yml,yaml}]
indent_size = 4
5 changes: 5 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* text=auto
*.css linguist-vendored
*.scss linguist-vendored
*.js linguist-vendored
CHANGELOG.md export-ignore
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
/storage/*.key
/vendor
/build
/vendor/.idea
/bootstrap/cache
.env
.env.backup
.phpunit.result.cache
Expand All @@ -12,4 +14,7 @@ Homestead.json
Homestead.yaml
npm-debug.log
yarn-error.log
.php-cs-fixer.cache
/.idea
/.vscode
/pkg
.DS_Store
5 changes: 5 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"semi": false,
"singleQuote": true,
"trailingComma": "all"
}
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) Ashraf Monshi
Copyright (c) php coder

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
36 changes: 17 additions & 19 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lara-zeus/artimes",
"description": "theme for lara zeus sky",
"name": "lara-zeus/artemis",
"description": "artistic themes for lara zeus sky",
"keywords": [
"laravel",
"lara-zeus",
Expand All @@ -19,36 +19,34 @@
"type": "library",
"authors": [
{
"name": "Ashraf Monshi",
"name": "php coder",
"email": "[email protected]",
"role": "Owner"
}
],
"require": {
"php": "^8.0",
"lara-zeus/sky": "^2.4"
"lara-zeus/core": "dev-main"
},
"scripts": {
"pint": "vendor/bin/pint",
"test:pest": "vendor/bin/pest --parallel",
"test:phpstan": "vendor/bin/phpstan analyse",
"test": [
"@test:pest",
"@test:phpstan"
]
"autoload": {
"psr-4": {
"LaraZeus\\Artemis\\": "src"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"ArtemisServiceProvider"
"LaraZeus\\Artemis\\ArtemisServiceProvider"
]
}
}
},
"repositories": [
{
"type": "path",
"url": "../core"
}
]
}
Loading

0 comments on commit 15efbf0

Please sign in to comment.