tjallingt
tjallingt
This will make it easier for you to publish a new version and it will be easier for people who are currently using the extensions api to develop using webpack.
`config/saml2_settings.php` and `config('saml2_settings')` feel kinda redundant, renamed everything to just be `saml2` instead. I send it to this branch because this feels kind of like the "next version" branch and...
This sort of depends on/overwrites https://github.com/aacotroneo/laravel-saml2/pull/151 I modernised the project structure to follow psr-4 (instead of psr-0) and removed a bunch of IMO strange code. Also updated the tests, refactored...
fixes https://github.com/koute/speedy/issues/57 The test case is the same as from the issue. That doesn't cover "consistency" fully but at least its a regression for this case. More tests should be...
fixes https://github.com/koute/speedy/issues/29 These are not implemented currently but I they seem pretty basic to me.
See the following example: ```rs use speedy::Readable; use std::io; #[derive(Debug, Readable)] struct Test { #[speedy(default_on_eof)] list: Vec, #[speedy(default_on_eof)] value_kind: ValueKind, } #[derive(Debug, Default, Readable)] #[speedy(tag_type = u8)] enum ValueKind {...
The following example hits a panic in speedy: ```rs macro_rules! define_enum { ( $(#[$enum_meta:meta])* enum $name:ident { $($(#[$variant_meta:meta])* $variant:ident $(= $value:literal)?),* $(,)? } ) => { $(#[$enum_meta])* enum $name {...
# Bug report ## Description / Observed Behavior ```ts import useSWR from "swr"; async function fetchOne(key: string): Promise { return "1"; } async function fetchTwo(key: string): Promise { return 2;...
### I'm using React Router as a... framework ### Reproduction https://stackblitz.com/edit/github-7pxkksy3?file=app%2Froot.tsx #### Project setup **root.tsx** ```tsx import { Links, Meta, Outlet, Scripts, ScrollRestoration, NavLink, } from 'react-router'; import './app.css'; export...