Skip to content
This repository has been archived by the owner on Jun 8, 2022. It is now read-only.

Commit

Permalink
Merge pull request #19 from SebKay/spindle-rebrand
Browse files Browse the repository at this point in the history
Changed all references to new name
  • Loading branch information
SebKay authored Apr 13, 2021
2 parents 4466b82 + 7ec5ea6 commit 9b5843b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Slim Starter
# Spindle

An easy to use [Slim 4](https://www.slimframework.com/) starter project for server side apps.

[![Test PHP](https://github.com/SebKay/slim-starter/actions/workflows/test-php.yml/badge.svg)](https://github.com/SebKay/slim-starter/actions/workflows/test-php.yml)
[![Test PHP](https://github.com/SebKay/spindle/actions/workflows/test-php.yml/badge.svg)](https://github.com/SebKay/spindle/actions/workflows/test-php.yml)

## What's Included

Expand All @@ -26,5 +26,5 @@ An easy to use [Slim 4](https://www.slimframework.com/) starter project for serv
### New Project

```shell
composer create-project sebkay/slim-starter project-name
composer create-project sebkay/spindle project-name
```
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sebkay/slim-starter",
"description": "An easy to use Slim 4 starter project for server side apps. Comes with a DI container, Twig for templating, VueJS and Sass.",
"name": "sebkay/spindle",
"description": "An easy to use Slim 4 starter app. Comes with a DI container, Eloquent ORM, Twig for templating, VueJS and Sass.",
"type": "project",
"license": "MIT",
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion resources/assets/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const App = createApp({
name: 'App',
data() {
return {
name: 'Slim Starter'
name: 'Spindle'
}
},
});
Expand Down
2 changes: 1 addition & 1 deletion resources/views/base.twig
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Slim Starter</title>
<title>Spindle</title>

<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ module.exports = (env, options) => {
emoji: true,
alwaysNotify: true,
title: function (params) {
return `Slim Starter`;
return `Spindle`;
}
}),
],
Expand Down

0 comments on commit 9b5843b

Please sign in to comment.