Skip to content

Commit

Permalink
package configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
fahrettinaksoy committed Mar 8, 2023
1 parent 7464707 commit 2ff53c5
Show file tree
Hide file tree
Showing 6 changed files with 91 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/node_modules
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 Weeyn Soft
Copyright (c) Weeyn <info@weeyn.com>

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
28 changes: 27 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,27 @@
# catalog-brand
# Weeyn Category Module
Weeyn catalog category module

![Packagist PHP Version](https://img.shields.io/packagist/dependency-v/weeynsoft/catalog-category/php)
![Packagist Version](https://img.shields.io/packagist/v/weeynsoft/catalog-category)
![Packagist Downloads](https://img.shields.io/packagist/dt/weeynsoft/catalog-category?label=download)
![GitHub](https://img.shields.io/github/license/weeynsoft/catalog-category)


This is the standalone category module of the [Weeyn](https://weeyn.com).

## Installation

(As Standalone Component)

1. `composer require weeynsoft/catalog-category`
2. `php artisan vendor:publish --provider="Konekt\Concord\ConcordServiceProvider"`
3. Add `Weeyn\CatalogCategory\Providers\ModuleServiceProvider::class` to modules in `config/concord.php`
4. `php artisan migrate`

## Usage

See the [Weeyn Category Module Documentation](https://weeyn.com/docs/master/catalog-category) for more details.

## About Us

Weeyn development is led by the core team.
46 changes: 46 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"name": "weeynsoft/catalog-brand",
"description": "Weeyn Brand Module",
"license": "MIT",
"keywords": [
"weeyn",
"catalog",
"brand"
],
"authors": [
{
"name": "Fahrettin Aksoy",
"email": "fahrettin@weeyn.com",
"homepage": "https://weeyn.com",
"role": "Developer"
}
],
"homepage": "https://weeyn.com",
"support": {
"email": "dev@weeyn.com",
"issues": "https://github.com/WeeynSoft/catalog-brand/issues",
"source": "https://github.com/WeeynSoft/catalog-brand",
"wiki": "https://github.com/WeeynSoft/catalog-brand/wiki",
"docs": "https://docs.weeyn.com/packets/catalog-brand",
"forum": "https://forum.weeyn.com",
"chat": "https://slack.weeyn.com"
},
"type": "library",
"require": {
"php": "^8.0"
},
"require-dev": {},
"autoload": {
"psr-4": {
"WeeynSoft\\CatalogBrand\\": "src/"
}
},
"autoload-dev": {},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {},
"extra": {},
"replace": {},
"suggest": {},
"config": {}
}
10 changes: 10 additions & 0 deletions src/Providers/ModuleServiceProvider.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

namespace WeeynSoft\CatalogBrand\Providers;

use Konekt\Concord\BaseModuleServiceProvider;

class ModuleServiceProvider extends BaseModuleServiceProvider
{

}
6 changes: 6 additions & 0 deletions src/resources/manifest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?php

return [
'name' => 'Weeyn Brand Module',
'version' => '1.0.0'
];

0 comments on commit 2ff53c5

Please sign in to comment.