Skip to content

Commit 8da7a56

Browse files
author
Andrei Onita
committed
updated mikey179/vfsstream
1 parent 3a9e809 commit 8da7a56

File tree

2 files changed

+22
-28
lines changed

2 files changed

+22
-28
lines changed

README.md

Lines changed: 21 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -53,42 +53,36 @@ Using the command line, go to your application's root directory, then type the f
5353

5454
The output should look similar to this, containing information on how to start using dot-cli:
5555

56-
```text
57-
DotKernel CLI 1.0.0
58-
59-
Usage:
60-
command [options] [arguments]
61-
62-
Options:
63-
-h, --help Display help for the given command. When no command is given display help for the list command
64-
-q, --quiet Do not output any message
65-
-V, --version Display this application version
66-
--ansi Force ANSI output
67-
--no-ansi Disable ANSI output
68-
-n, --no-interaction Do not ask any interactive question
69-
-v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
70-
71-
Available commands:
72-
help Display help for a command
73-
list List commands
74-
demo
75-
demo:command Demo command description.
76-
```
56+
DotKernel CLI 1.0.0
57+
58+
Usage:
59+
command [options] [arguments]
60+
61+
Options:
62+
-h, --help Display help for the given command. When no command is given display help for the list command
63+
-q, --quiet Do not output any message
64+
-V, --version Display this application version
65+
--ansi Force ANSI output
66+
--no-ansi Disable ANSI output
67+
-n, --no-interaction Do not ask any interactive question
68+
-v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
69+
70+
Available commands:
71+
help Display help for a command
72+
list List commands
73+
demo
74+
demo:command Demo command description.
7775

7876
As shown in `config/autoload/cli.global.php`, dot-cli includes a demo command `demo:command` that will help you understand the basics of creating a new command.
7977
For more information, see [laminas-cli documentation](https://docs.laminas.dev/laminas-cli/).
8078

8179
## Setting up as cronjob
8280

83-
```text
84-
* * * * * /opt/plesk/php/7.4/bin/php /var/www/vhosts/example.com/httpdocs/bin/cli.php demo:command -q
85-
```
81+
* * * * * /opt/plesk/php/7.4/bin/php /var/www/vhosts/example.com/httpdocs/bin/cli.php demo:command -q
8682

8783
or
8884

89-
```text
90-
* * * * * cd /var/www/vhosts/example.com/httpdocs/bin && /opt/plesk/php/7.4/bin/php ./cli.php demo:command -q
91-
```
85+
* * * * * cd /var/www/vhosts/example.com/httpdocs/bin && /opt/plesk/php/7.4/bin/php ./cli.php demo:command -q
9286

9387
Adapt the command to your specifications by replacing **7.4** with your PHP version and **example.com** with your domain name.
9488

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
},
3636
"require-dev": {
3737
"laminas/laminas-coding-standard": "^2.5",
38-
"mikey179/vfsstream": "^1.6",
38+
"mikey179/vfsstream": "^1.6.7",
3939
"phpunit/phpunit": "^10.2",
4040
"vimeo/psalm": "^5.13"
4141
},

0 commit comments

Comments
 (0)