Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 025deb80b241
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7ca97fcde8a5
Choose a head ref
  • 4 commits
  • 1 file changed
  • 2 contributors

Commits on May 16, 2020

  1. Copy the full SHA
    22c1ab0 View commit details
  2. Copy the full SHA
    b48b513 View commit details

Commits on May 17, 2020

  1. Merge pull request #87980 from talyz/phpstan-0.12.25-20.03

    [20.03] phpPackages.phpstan: 0.12.4 -> 0.12.25
    etu authored May 17, 2020
    Copy the full SHA
    a1fe909 View commit details
  2. Merge pull request #87977 from talyz/composer-1.10.6-20.03

    [20.03] phpPackages.composer: 1.9.1 -> 1.10.6
    etu authored May 17, 2020
    Copy the full SHA
    7ca97fc View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/top-level/php-packages.nix
8 changes: 4 additions & 4 deletions pkgs/top-level/php-packages.nix
Original file line number Diff line number Diff line change
@@ -74,12 +74,12 @@ let
};

composer = mkDerivation rec {
version = "1.9.1";
version = "1.10.6";
pname = "composer";

src = pkgs.fetchurl {
url = "https://getcomposer.org/download/${version}/composer.phar";
sha256 = "04a1fqxhxrckgxw9xbx7mplkzw808k2dz4jqsxq2dy7w6y80n88z";
sha256 = "0yzfzgg9qlc388g91bdg7y7rp1q8vqb5hkwykwmr1n1lv8dsrg99";
};

dontUnpack = true;
@@ -441,12 +441,12 @@ let
};

phpstan = mkDerivation rec {
version = "0.12.4";
version = "0.12.25";
pname = "phpstan";

src = pkgs.fetchurl {
url = "https://github.com/phpstan/phpstan/releases/download/${version}/phpstan.phar";
sha256 = "1h386zsbfw9f1r00pjbvj749q1fg5q22sgrnx7rqjrnwmbl5mh36";
sha256 = "1a864v7fxpv5kp24nkvczrir3ldl6wxvaq85rd391ppa8ahdhvdd";
};

phases = [ "installPhase" ];