We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48d7302 commit e19b025Copy full SHA for e19b025
bin/show-success.php
@@ -0,0 +1,13 @@
1
+#!/usr/bin/env php
2
+<?php
3
+
4
+declare(strict_types=1);
5
6
+echo PHP_EOL;
7
+echo " \033[42;30m DONE \033[0m Your plugin is ready!" . PHP_EOL;
8
9
+echo " \033[36mgit init && git add -A && git commit -m 'Initial commit'\033[0m" . PHP_EOL;
10
+echo " \033[36msymfony serve -d\033[0m" . PHP_EOL;
11
12
13
+unlink(__FILE__);
composer.json
@@ -78,7 +78,9 @@
78
"@php bin/validate-directory.php"
79
],
80
"post-create-project-cmd": [
81
- "@php bin/rename-plugin.php"
+ "@php bin/rename-plugin.php",
82
+ "@test-app-init",
83
+ "@php bin/show-success.php"
84
85
"database-reset": [
86
"vendor/bin/console doctrine:database:drop --force --if-exists",
0 commit comments