Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / zendframework / zend-stdlib / composer.json
1 {
2     "name": "zendframework/zend-stdlib",
3     "description": "SPL extensions, array utilities, error handlers, and more",
4     "license": "BSD-3-Clause",
5     "keywords": [
6         "zf",
7         "zendframework",
8         "stdlib"
9     ],
10     "support": {
11         "docs": "https://docs.zendframework.com/zend-stdlib/",
12         "issues": "https://github.com/zendframework/zend-stdlib/issues",
13         "source": "https://github.com/zendframework/zend-stdlib",
14         "rss": "https://github.com/zendframework/zend-stdlib/releases.atom",
15         "slack": "https://zendframework-slack.herokuapp.com",
16         "forum": "https://discourse.zendframework.com/c/questions/components"
17     },
18     "require": {
19         "php": "^5.6 || ^7.0"
20     },
21     "require-dev": {
22         "phpbench/phpbench": "^0.13",
23         "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
24         "zendframework/zend-coding-standard": "~1.0.0"
25     },
26     "autoload": {
27         "psr-4": {
28             "Zend\\Stdlib\\": "src/"
29         }
30     },
31     "autoload-dev": {
32         "psr-4": {
33             "ZendTest\\Stdlib\\": "test/",
34             "ZendBench\\Stdlib\\": "benchmark/"
35         }
36     },
37     "config": {
38         "sort-packages": true
39     },
40     "extra": {
41         "branch-alias": {
42             "dev-master": "3.2.x-dev",
43             "dev-develop": "3.3.x-dev"
44         }
45     },
46     "scripts": {
47         "check": [
48             "@cs-check",
49             "@test"
50         ],
51         "cs-check": "phpcs",
52         "cs-fix": "phpcbf",
53         "test": "phpunit --colors=always",
54         "test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
55     }
56 }