Commit 680f1b48 authored by Gareth Alexander's avatar Gareth Alexander
Browse files

Resolve #2237493 "Port to drupal 8 & 9"

parent 625a0595
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line

CONTENTS OF THIS FILE
---------------------

@@ -19,4 +18,4 @@ INSTALLATION
------------

This module is installed in the usual way. See
http://drupal.org/documentation/install/modules-themes/modules-7.
https://www.drupal.org/docs/user_guide/en/extend-module-install.html.

composer.json

0 → 100644
+15 −0
Original line number Diff line number Diff line
{
    "name": "drupal/pasc",
    "description": "An interactive checklist of performance and scalability optimization tasks for Drupal.",
    "type": "drupal-module",
    "homepage": "http://drupal.org/project/pasc",
    "license": "GPL-2.0-or-later",
    "require": {
        "drupal/checklistapi": "^2.0"
    },
    "minimum-stability": "dev",
    "support": {
        "issues": "https://www.drupal.org/project/issues/pasc",
        "source": "https://git.drupalcode.org/project/pasc"
    }
}

pasc.info

deleted100644 → 0
+0 −6
Original line number Diff line number Diff line
name = Performance and Scalability Checklist
description = An interactive checklist of performance and scalability optimization tasks for Drupal.
core = 7.x
dependencies[] = checklistapi
package = Performance and scalability
configure = admin/config/development/pasc

pasc.info.yml

0 → 100644
+8 −0
Original line number Diff line number Diff line
name: Performance and Scalability Checklist
type: module
description: An interactive checklist of performance and scalability optimization tasks for Drupal.
package: 'Performance and scalability'
core_version_requirement: ^8 || ^9
dependencies:
  - checklistapi
configure: checklistapi.checklists.pasc
+3 −1
Original line number Diff line number Diff line
@@ -9,5 +9,7 @@
 * Implements hook_uninstall().
 */
function pasc_uninstall() {
  variable_del('checklistapi_checklist_pasc');
  \Drupal::configFactory()
    ->getEditable("checklistapi.progress.pasc")
    ->delete();
}
Loading