Skip to content
Snippets Groups Projects
  • Tim van Dijen's avatar
    Remove 2.0 deprecations (#1281) · 2c8aa8a6
    Tim van Dijen authored
    * Remove deprecated classes
    
    * Remove support for certificate fingerprints
    
    * Remove many deprecated methods and pieces of code
    
    * Remove SAML1.1/Shib1.3 support
    
    * Remove many superfluous annotations
    
    * Update unit test to work with new PHPunit
    
    Closes #1268 
    Closes #1020 
    Closes #431 
    Closes #167 
    Closes #151 
    Unverified
    2c8aa8a6
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
.appveyor.yml 969 B
build: false
shallow_clone: false
version: '2.0.0.{build}'
platform: 'x64'
clone_folder: C:\projects\simplesamlphp

environment:
  matrix:
    - PHP_VERSION: "7.2"
    - PHP_VERSION: "7.3"
    - PHP_VERSION: "7.4"

install:
  - ps: Invoke-WebRequest "https://raw.githubusercontent.com/ChadSikorra/ps-install-php/master/Install-PHP.ps1" -OutFile "Install-PHP.ps1"
  - ps: .\Install-PHP.ps1 -Version $Env:PHP_VERSION -Highest -Arch x64 -Extensions mbstring,intl,openssl,curl,pdo_mysql,pdo_sqlite
  - refreshenv
  - cd C:\projects\simplesamlphp
  - php -r "readfile('https://getcomposer.org/installer');" | php

before_test:
  - cd C:\projects\simplesamlphp
  # For 2.0 (or once the externalized modules are no longer included), remove the --ignore-platform-reqs
  - php composer.phar install --no-interaction --no-progress --optimize-autoloader --prefer-source --no-ansi --ignore-platform-reqs

test_script:
  - cd C:\projects\simplesamlphp
  - vendor\bin\phpunit.bat