Skip to content

Commit

Permalink
fix: failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bensherred committed Nov 23, 2023
1 parent cf515f9 commit 32697b2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"authors": [
{
"name": "author_name",
"email": "author_email"
"email": "[email protected]"
}
],
"require": {
Expand Down
4 changes: 2 additions & 2 deletions init.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function files(): array
{
$files = explode(
separator: PHP_EOL,
string: run(command: 'grep -E -r -l -i "package_name|package_slug|package_description|author_name|author_username|author_email|skeleton|Skeleton" --exclude-dir=vendor ./* ./.github/* | grep -v '. basename(path: __FILE__))
string: run(command: 'grep -E -r -l -i "package_name|package_slug|package_description|author_name|author_username|[email protected]|skeleton|Skeleton" --exclude-dir=vendor ./* ./.github/* | grep -v '. basename(path: __FILE__))
);

$files[] = './config/skeleton.php';
Expand Down Expand Up @@ -75,7 +75,7 @@ function removeReadmeParagraphs(string $file): void
'package_description' => $packageDescription,
'author_name' => $authorName,
'author_username' => $authorUsername,
'author_email' => $authorEmail,
'[email protected]' => $authorEmail,
'skeleton' => $packageSlugWithoutPrefix,
'Skeleton' => $className,
]);
Expand Down

0 comments on commit 32697b2

Please sign in to comment.