Skip to content

Commit

Permalink
Merge pull request #42 from librarianphp/fix-minicli-update
Browse files Browse the repository at this point in the history
Fix issues with Minicli update
  • Loading branch information
erikaheidi authored Jun 23, 2023
2 parents 56206c2 + f70d63c commit 99f071b
Show file tree
Hide file tree
Showing 11 changed files with 234 additions and 239 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.idea
config.php
config/librarian.php
vendor/
node_modules/
.phpunit.result.cache
Expand Down
27 changes: 0 additions & 27 deletions app/helpers.php

This file was deleted.

25 changes: 11 additions & 14 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,24 @@
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"app/helpers.php"
]
}
},
"require": {
"php": ">=8.1",
"ext-json": "*",
"ext-curl": "*",
"ext-xml": "*",
"librarianphp/librarian-core": "^4.0",
"librarianphp/librarian-core": "^4.2",
"suin/php-rss-writer": "^1.6",
"librarianphp/command-help": "^1.0",
"librarianphp/command-create": "^1.0",
"librarianphp/command-cache": "^1.0",
"librarianphp/command-web": "^1.0",
"librarianphp/command-build": "^1.0"
"librarianphp/command-help": "^1.1",
"librarianphp/command-create": "^1.1",
"librarianphp/command-cache": "^1.1",
"librarianphp/command-web": "^1.2",
"librarianphp/command-build": "^1.2"
},
"scripts": {
"post-install-cmd": [
"@php -r \"file_exists('config.php') || copy('config_sample.php', 'config.php');\""
"@php -r \"file_exists('config/librarian.php') || copy('config_sample.php', 'config/librarian.php');\""
],
"lint": ["pint"],
"test:unit" : ["pest"],
Expand All @@ -38,9 +35,9 @@
]
},
"require-dev": {
"pestphp/pest": "^2.0",
"minicli/pest-plugin-curly": "^0.2.1",
"friendsofphp/php-cs-fixer": "^3.16",
"pestphp/pest": "^2.8",
"minicli/pest-plugin-curly": "^0.2",
"friendsofphp/php-cs-fixer": "^3.18",
"laravel/pint": "^1.10"
},
"config": {
Expand Down
Loading

0 comments on commit 99f071b

Please sign in to comment.