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

Commit 9b5843b

Browse files
authored
Merge pull request #19 from SebKay/spindle-rebrand
Changed all references to new name
2 parents 4466b82 + 7ec5ea6 commit 9b5843b

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Slim Starter
1+
# Spindle
22

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

5-
[![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)
5+
[![Test PHP](https://github.com/SebKay/spindle/actions/workflows/test-php.yml/badge.svg)](https://github.com/SebKay/spindle/actions/workflows/test-php.yml)
66

77
## What's Included
88

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

2828
```shell
29-
composer create-project sebkay/slim-starter project-name
29+
composer create-project sebkay/spindle project-name
3030
```

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "sebkay/slim-starter",
3-
"description": "An easy to use Slim 4 starter project for server side apps. Comes with a DI container, Twig for templating, VueJS and Sass.",
2+
"name": "sebkay/spindle",
3+
"description": "An easy to use Slim 4 starter app. Comes with a DI container, Eloquent ORM, Twig for templating, VueJS and Sass.",
44
"type": "project",
55
"license": "MIT",
66
"authors": [

resources/assets/js/app.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const App = createApp({
44
name: 'App',
55
data() {
66
return {
7-
name: 'Slim Starter'
7+
name: 'Spindle'
88
}
99
},
1010
});

resources/views/base.twig

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4-
<title>Slim Starter</title>
4+
<title>Spindle</title>
55

66
<meta charset="UTF-8">
77
<meta http-equiv="X-UA-Compatible" content="IE=edge">

webpack.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ module.exports = (env, options) => {
5656
emoji: true,
5757
alwaysNotify: true,
5858
title: function (params) {
59-
return `Slim Starter`;
59+
return `Spindle`;
6060
}
6161
}),
6262
],

0 commit comments

Comments
 (0)