This repository has been archived by the owner on Dec 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewritten extension from scratch - Nette 3 only
- Loading branch information
Radovan Kepák
authored
May 26, 2021
1 parent
29dc084
commit 69f9a44
Showing
28 changed files
with
326 additions
and
263 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,29 +23,33 @@ | |
], | ||
"require": { | ||
"php": ">=7.4 <8.1", | ||
"nette/di": "^2.4.17 || ^3.0", | ||
"nette/utils": "^2.5.7 || ^3.0", | ||
"nette/di": "^3.0.5", | ||
"nette/utils": "^3.0", | ||
"monolog/monolog": "^2.2", | ||
"tracy/tracy": "^2.6.8" | ||
"nette/schema": "^1.2" | ||
}, | ||
"require-dev": { | ||
"nette/application": "^2.4.17 || ^3.0.7", | ||
"nette/bootstrap": "^2.4.6 || ^3.0", | ||
"nette/caching": "^2.5.9 || ^3.0", | ||
"nette/http": "^2.4.12 || ^3.0", | ||
"nette/application": "^3.0.7", | ||
"nette/bootstrap": "^3.0", | ||
"nette/caching": "^3.0", | ||
"nette/http": "^3.0", | ||
"nette/tester": "^2.4", | ||
"psr/log": "^1.1", | ||
"phpstan/phpstan": "^0.12.80", | ||
"php-parallel-lint/php-parallel-lint": "^1.2" | ||
"phpstan/phpstan-nette": "^0.12.15", | ||
"php-parallel-lint/php-parallel-lint": "^1.2", | ||
"tracy/tracy": "2.6" | ||
}, | ||
"suggest": { | ||
"tracy/tracy": "To set tracyHook and get Tracy blueScreen on exceptions" | ||
}, | ||
"minimum-stability": "stable", | ||
"support": { | ||
"email": "[email protected]", | ||
"issues": "https://github.com/MG/monolog/issues" | ||
"issues": "https://github.com/mallgroup/monolog/issues" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"MG\\Monolog\\": "src/" | ||
"Mallgroup\\Monolog\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
|
@@ -58,7 +62,7 @@ | |
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "1.0-dev" | ||
"dev-master": "2.0-dev" | ||
} | ||
}, | ||
"scripts": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.