Skip to content
View alexandreelise's full-sized avatar
💡
Votre Site Web. Augmenté.
💡
Votre Site Web. Augmenté.

Block or report alexandreelise

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
alexandreelise/README.md

Pinned Loading

  1. j4x-api-collection j4x-api-collection Public template

    An attempt to help the Joomla! 4.x, 5.x, 6.x and beyond, early adopters, mainly focused for developers. It's an unofficial postman collection of the official since Joomla4 Beta API until now

    71 32

  2. j4x-api-examples j4x-api-examples Public template

    Some Joomla! 4.x Web Services Api Examples and Experiments to raise the level of awareness of the huge potiental of Joomla! 4.x Web Services.

    PHP 40 1

  3. frankenphp-joomla frankenphp-joomla Public template

    Joomla on FrankenPHP

    Dockerfile 11 3

  4. com_ddd com_ddd Public template

    Example Component using Domain-driven Design and Hexagonal Architecture principles and recommandations based on what have learned by reading DDD related books, watching YouTube videos and conferenc…

    PHP

  5. An example of heavily automated, opt... An example of heavily automated, optimized, effective Postman Collection level post-response script
    1
    let currentLocation = pm.collectionVariables.get('computed_current_location');
    2
    
                  
    3
    
                  
    4
    pm.test(`Successful 2xx request for ${currentLocation}`, () => {
    5
        pm.expect(pm.response.code).to.be.oneOf([200, 201, 202, 203, 204, 205, 206, 207, 208, 226]);
  6. An example of heavily automated, opt... An example of heavily automated, optimized, effective Postman collection level pre-request script
    1
    // Remove collection name from the breadcrumb
    2
    pm.execution.location.splice(0, 1);
    3
    
                  
    4
    // Remove the last element as it is the request and we don't need it
    5
    pm.execution.location.pop();