Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
{
2
  "name": "giggsey/libphonenumber-for-php-lite",
3
  "type": "library",
4
  "description": "A lite version of giggsey/libphonenumber-for-php, which is a PHP Port of Google's libphonenumber",
5
  "keywords": [
6
    "phonenumber",
7
    "libphonenumber",
8
    "mobile",
9
    "validation",
10
    "geocoding",
11
    "geolocation"
12
  ],
13
  "homepage": "https://github.com/giggsey/libphonenumber-for-php-lite",
14
  "license": "Apache-2.0",
15
  "support": {
16
    "source": "https://github.com/giggsey/libphonenumber-for-php-lite",
17
    "issues": "https://github.com/giggsey/libphonenumber-for-php-lite/issues"
18
  },
19
  "authors": [
20
    {
21
      "name": "Joshua Gigg",
22
      "email": "giggsey@gmail.com",
23
      "homepage": "https://giggsey.com/"
24
    }
25
  ],
26
  "autoload": {
27
    "psr-4": {
28
      "libphonenumber\\": "src/"
29
    },
30
    "exclude-from-classmap": [
31
        "/src/data/",
32
        "/src/carrier/data/",
33
        "/src/geocoding/data/",
34
        "/src/timezone/data/"
35
    ]
36
 
37
  },
38
  "autoload-dev": {
39
    "psr-4": {
40
      "libphonenumber\\buildtools\\": "build/",
41
      "libphonenumber\\Tests\\": "tests/"
42
    }
43
  },
44
  "archive": {
45
    "exclude": [
46
      "build/",
47
      "docs/",
48
      "tests/",
49
      ".github/",
50
      ".editorconfig",
51
      ".gitattributes",
52
      ".gitignore",
53
      ".php-cs-fixer.dist.php",
54
      "phpstan.neon.dist",
55
      "build.xml",
56
      "phpunit.xml.dist",
57
      "infection.json.dist",
58
      "src/CountryCodeToRegionCodeMapForTesting.php"
59
    ]
60
  },
61
  "require": {
62
    "php": "^8.1",
63
    "symfony/polyfill-mbstring": "^1.17"
64
  },
65
  "require-dev": {
66
    "ext-dom": "*",
67
    "friendsofphp/php-cs-fixer": "^3.12",
68
    "infection/infection": "^0.28",
69
    "pear/pear-core-minimal": "^1.10.11",
70
    "pear/pear_exception": "^1.0.2",
71
    "pear/versioncontrol_git": "^0.7",
72
    "phing/phing": "^2.17.4",
73
    "phpstan/extension-installer": "^1.2",
74
    "phpstan/phpstan": "^1.8",
75
    "phpstan/phpstan-phpunit": "^1.2",
76
    "phpunit/phpunit": "^10.5",
77
    "symfony/console": "^6.0",
78
    "symfony/var-exporter": "^6.0"
79
  },
80
  "conflict": {
81
    "giggsey/libphonenumber-for-php": "*"
82
  },
83
  "suggest": {
84
    "giggsey/libphonenumber-for-php": "Use libphonenumber-for-php for geocoding, carriers, timezones and matching"
85
  },
86
  "extra": {
87
    "branch-alias": {
88
      "dev-master": "8.x-dev"
89
    }
90
  },
91
  "scripts": {
92
    "cs": "vendor/bin/php-cs-fixer fix",
93
    "phpstan": "vendor/bin/phpstan",
94
    "test": "vendor/bin/phpunit",
95
    "metadata": "vendor/bin/phing compile"
96
  },
97
  "config": {
98
    "sort-packages": true,
99
    "allow-plugins": {
100
      "phpstan/extension-installer": true,
101
      "infection/extension-installer": true
102
    }
103
  }
104
}