Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: arif98741/nagadApi
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.9.2.4
Choose a base ref
...
head repository: arif98741/nagadApi
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 8 commits
  • 3 files changed
  • 1 contributor

Commits on Dec 15, 2024

  1. Update readme.md

    arif98741 authored Dec 15, 2024
    Copy the full SHA
    d4a5f0b View commit details
  2. Update readme.md

    arif98741 authored Dec 15, 2024
    Copy the full SHA
    bc6e0e9 View commit details

Commits on Jan 29, 2025

  1. Update composer.json

    arif98741 authored Jan 29, 2025
    Copy the full SHA
    19f37dd View commit details
  2. Create php-version-installation-pipeline.yml

    arif98741 authored Jan 29, 2025
    Copy the full SHA
    eebeb0c View commit details
  3. Update php-version-installation-pipeline.yml

    arif98741 authored Jan 29, 2025
    Copy the full SHA
    ca84e9e View commit details
  4. Merge pull request #9 from arif98741/php_version

    PHP Version Pipeline Check
    arif98741 authored Jan 29, 2025
    Copy the full SHA
    fce7670 View commit details
  5. Merge pull request #10 from arif98741/dev

    Merge Dev to Master
    arif98741 authored Jan 29, 2025
    Copy the full SHA
    ba2da78 View commit details
  6. docs(CHANGELOG): update release notes

    arif98741 committed Jan 29, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    40a86df View commit details
Showing with 56 additions and 1 deletion.
  1. +42 −0 .github/workflows/php-version-installation-pipeline.yml
  2. +13 −0 CHANGELOG.md
  3. +1 −1 composer.json
42 changes: 42 additions & 0 deletions .github/workflows/php-version-installation-pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Check Composer Compatibility for PHP 8.0, 8.1, 8.2, 8.3, 8.4

on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
- dev
jobs:
check-php-versions:
runs-on: ubuntu-latest

strategy:
matrix:
php-version: [8.0, 8.1, 8.2, 8.3, 8.4] # Added PHP 8.0 to the matrix

steps:
# Step 1: Check out the code
- name: Checkout code
uses: actions/checkout@v2

# Step 2: Set up PHP version
- name: Set up PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: mbstring, intl, bcmath, curl, json # Add any required PHP extensions

# Step 3: Install Composer
- name: Install Composer
run: curl -sS https://getcomposer.org/installer | php

# Step 4: Install dependencies using Composer
- name: Install dependencies with Composer
run: php composer.phar install --no-progress --prefer-dist

# Step 5: Run tests or any checks (optional)
- name: Run PHPUnit tests (if applicable)
run: vendor/bin/phpunit --configuration phpunit.xml.dist || true # Adjust as needed
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# CHANGELOG

## [v1.9.3.0](https://github.com/arif98741/nagadApi/releases/tag/v1.9.3.0) - 2025-01-29 04:27:41

## What's Changed
* PHP Version Pipeline Check by @arif98741 in https://github.com/arif98741/nagadApi/pull/9
* Merge Dev to Master by @arif98741 in https://github.com/arif98741/nagadApi/pull/10


**Full Changelog**: https://github.com/arif98741/nagadApi/compare/v1.9.2.4...v1.9.3.0

## [v1.9.2.4](https://github.com/arif98741/nagadApi/releases/tag/v1.9.2.4) - 2024-12-15 05:46:05

**Full Changelog**: https://github.com/arif98741/nagadApi/compare/v1.9.2.3...v1.9.2.4

## [v1.9.2.3](https://github.com/arif98741/nagadApi/releases/tag/v1.9.2.3) - 2023-06-07 17:35:22

**Full Changelog**: https://github.com/arif98741/nagadApi/compare/v1.9.2.2...v1.9.2.3
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@
"email": "arif98741@gmail.com"
},
"require": {
"php": "^7.3|^8.0|^8.1|^8.2",
"php": "^7.4|^8.0",
"ext-curl": "*",
"ext-json": "*",
"nesbot/carbon": "^2.59",