Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

create ibis-next #2

Merged
merged 1 commit into from
Dec 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: [ '8.2' ]
operating-system: ['ubuntu-latest']
php-versions: [ '8.3' ]
name: P${{ matrix.php-versions }} - L${{ matrix.laravel }} - ${{ matrix.dependency-stability }} - ${{ matrix.operating-system}}
steps:
# This is required as this package does not support PHP 8 (yet)
Expand Down Expand Up @@ -41,8 +41,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: [ '8.3', '8.2','8.1', '8.0' ]
operating-system: ['ubuntu-latest', 'windows-latest']
php-versions: [ '8.3', '8.2','8.1' ]
name: P${{ matrix.php-versions }} - L${{ matrix.laravel }} - ${{ matrix.dependency-stability }} - ${{ matrix.operating-system}}
steps:
# This is required as this package does not support PHP 8 (yet)
Expand Down Expand Up @@ -71,5 +71,5 @@ jobs:
- name: test Ibis execution
run: |
mkdir export
./ibis init
./ibis build
./ibis-next init
./ibis-next build
3 changes: 2 additions & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
The MIT License (MIT)

Copyright (c) Mohamed Said <[email protected]>
Ibis original project: Copyright (c) Mohamed Said <[email protected]>
Ibis Next project: Copyright (c) Roberto Butti

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Binary file modified art/cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 14 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,34 +1,38 @@
{
"name": "themsaid/ibis",
"name": "hi-folks/ibis-next",
"description": "Markdown to PDF book builder",
"keywords": [
"markdown",
"book",
"pdf",
"php"
],
"homepage": "https://github.com/themsaid/ibis",
"homepage": "https://github.com/hi-folks/ibis-next",
"license": "MIT",
"authors": [
{
"name": "Mohamed Said",
"email": "[email protected]"
},
{
"name": "Roberto Butti"
}
],
"bin": [
"ibis"
"ibis-next"
],
"require": {
"illuminate/filesystem": "^7.0|^8.0|^9.0|^10.0",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0",
"mpdf/mpdf": "^8.1",
"spatie/commonmark-highlighter": "^2.1|^3.0",
"symfony/console": "^4.2|^5.0|^6.0|^7.0",
"symfony/yaml": "^5.0|^6.0|^7.0"
"php": "^8.1",
"illuminate/filesystem": "^10.0",
"illuminate/support": "^10.0",
"mpdf/mpdf": "^8.0",
"spatie/commonmark-highlighter": "^3.0",
"symfony/console": "^6.0|^7.0",
"symfony/yaml": "^6.0|^7.0"
},
"require-dev": {
"laravel/pint": "^1.2",
"symfony/var-dumper": "^5.0|^6.0|^7.0"
"symfony/var-dumper": "^6.0|^7.0"
},
"autoload": {
"psr-4": {
Expand Down
84 changes: 43 additions & 41 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion ibis → ibis-next
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ if (file_exists(__DIR__.'/../../autoload.php')) {
/**
* Start the console application.
*/
$app = new Application('Ibis', 'beta');
$app = new Application('Ibis Next', '1.0-dev');
$app->setDefaultCommand("build");


// Authentication...
$app->add(new InitCommand());
Expand Down
Loading
Loading