1
0
Fork 0
mirror of https://github.com/archtechx/laravel-seo.git synced 2025-12-12 01:44:03 +00:00

Initial commit

This commit is contained in:
Samuel Štancl 2021-05-23 13:17:03 +02:00
commit 051a32575c
15 changed files with 551 additions and 0 deletions

41
README.md Normal file
View file

@ -0,0 +1,41 @@
# REPLACE
Simple and flexible package template.
# Usage
- Replace all occurances of `REPLACE` (case sensitive) with the name of the package namespace. E.g. the `Foo` in `ArchTech\Foo`.
- Replace all occurances of `replace2` with the name of the package on composer, e.g. the `bar` in `archtechx/bar`.
- If MySQL is not needed, remove `docker-compose.yml`, remove the line that runs docker from `./check`, and set `DB_CONNECTION` in `phpunit.xml` to `sqlite`, and `DB_DATABASE` to `:memory:`.
---
## Installation
```sh
composer require stancl/replace2
```
## Usage
```php
// ...
```
## Development
Running all checks locally:
```sh
./check
```
Running tests:
```sh
MYSQL_PORT=3307 docker-compose up -d
phpunit
```
Code style will be automatically fixed by php-cs-fixer.