]> git.andy128k.dev Git - missing-tools.git/commitdiff
update deps. stable only 0.2 0.2
authorAndrey Kutejko <andy128k@gmail.com>
Sun, 17 Mar 2019 13:31:26 +0000 (14:31 +0100)
committerAndrey Kutejko <andy128k@gmail.com>
Sun, 17 Mar 2019 13:31:26 +0000 (14:31 +0100)
composer.json
composer.lock
src/dateformat.php

index 184f8f51a84b1e1634d3b1adfa344bb9b566fda1..8dbdfc7c5db558a57cadfc8bd22e307b341ee2d1 100644 (file)
   },
   "require": {
     "php": ">=5.3",
-    "andy128k/pegp": "0.1.*@dev"
+    "andy128k/pegp": "0.2"
   },
   "require-dev": {
     "phpunit/phpunit": "4.4.*"
   },
-  "repositories": [
-    {
-      "type": "composer",
-      "url": "http://packages.andy128k.net/php/"
-    }
-  ],
   "config": {
-    "secure-http": false,
     "platform": {
       "php": "5.6.4"
     }
index 77ac1f6db2d01c8c66c226fe7ec607bc6c2a7043..6763bc86707bc77cc49c9d577f2ac99a0cb76cc3 100644 (file)
@@ -4,30 +4,35 @@
         "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
         "This file is @generated automatically"
     ],
-    "content-hash": "8a90404e7ab5a3257409a757dd322d7b",
+    "content-hash": "2bdd3ecd1c14aff8b1e4786ee9bf123c",
     "packages": [
         {
             "name": "andy128k/pegp",
-            "version": "0.1.x-dev",
+            "version": "0.2",
             "source": {
                 "type": "git",
-                "url": "git://git.andy128k.net/pegp.git",
-                "reference": "5587cad497f1abb543cd04f40a89584ffeccc729"
+                "url": "https://github.com/andy128k/pegp.git",
+                "reference": "7f4c5a065dec027c4362d346dc7b3995ddb3067f"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/andy128k/pegp/zipball/7f4c5a065dec027c4362d346dc7b3995ddb3067f",
+                "reference": "7f4c5a065dec027c4362d346dc7b3995ddb3067f",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.6"
             },
             "require-dev": {
-                "phpunit/phpunit": "4.4.*"
+                "phpunit/phpunit": "~8"
             },
             "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "0.x-dev"
-                }
-            },
             "autoload": {
-                "classmap": [
-                    "src/"
-                ]
+                "psr-4": {
+                    "Pegp\\": "src/"
+                }
             },
+            "notification-url": "https://packagist.org/downloads/",
             "license": [
                 "MIT"
             ],
@@ -37,8 +42,8 @@
                     "email": "andy128k@gmail.com"
                 }
             ],
-            "description": "PEG",
-            "time": "2015-01-11T10:39:21+00:00"
+            "description": "Library to construct PEG parsers",
+            "time": "2019-03-17T13:12:33+00:00"
         }
     ],
     "packages-dev": [
     ],
     "aliases": [],
     "minimum-stability": "stable",
-    "stability-flags": {
-        "andy128k/pegp": 20
-    },
+    "stability-flags": [],
     "prefer-stable": false,
     "prefer-lowest": false,
     "platform": {
index 7a96a56304a5ac0faf8110db3f5d8cf130bee93b..79a6d428a18308a8bd5b7b6554e6562921f4bfda 100644 (file)
@@ -2,7 +2,7 @@
 
 namespace PFF;
 
-use \Pegp as Pegp;
+use \Pegp\Pegp as Pegp;
 
 final class DateFormat
 {