forked from maurobonfietti/slim4-api-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
post-create-project-command.php
45 lines (34 loc) · 1.32 KB
/
post-create-project-command.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
declare(strict_types=1);
echo <<<EOF
_____ _ _ _ _
/ ____| (_) | || |
| (___ | |_ _ __ ___ | || |_
\___ \| | | '_ ` _ \ |__ _|
____) | | | | | | | | | |
|_____/|_|_|_| |_| |_| |_| _
| __ \ | | /\ (_)
| |__) |___ ___| |_ / \ _ __ _
| _ // _ \/ __| __| / /\ \ | '_ \| |
| | \ \ __/\__ \ |_ / ____ \| |_) | |
|_|__\_\___||___/\__/_/ _ \_\ .__/|_|
/ ____| | | | | | | |
| (___ | | _____| | ___| |_ _|_| _ __
\___ \| |/ / _ \ |/ _ \ __/ _ \| '_ \
____) | < __/ | __/ || (_) | | | |
|_____/|_|\_\___|_|\___|\__\___/|_| |_|
\033[36m*************************************************************\033[37m
Project: https://github.com/maurobonfietti/slim4-api-skeleton
\033[36m*************************************************************\033[37m
\033[32mSuccessfully created project!\033[37m
Get started with the following commands:
$ cd [your-api-name]
$ composer test
$ composer start
\033[33mRemember that you need to set the MySQL connection in your dotenv file: '.env'.\033[37m
\033[32mThanks for installing this project!\033[37m
Now go build a cool RESTful API ;-)
EOF;
unlink('.coveralls.yml');
unlink('.travis.yml');
unlink('post-create-project-command.php');