Fix bug in style changes for the Use cases on the live site.
[yaffs-website] / vendor / asm89 / stack-cors / composer.json
1 {
2     "name": "asm89/stack-cors",
3     "description": "Cross-origin resource sharing library and stack middleware",
4     "keywords": ["stack", "cors"],
5     "homepage": "https://github.com/asm89/stack-cors",
6     "type": "library",
7     "license": "MIT",
8     "authors": [
9         {
10             "name": "Alexander",
11             "email": "iam.asm89@gmail.com"
12         }
13     ],
14     "require": {
15         "php": ">=5.5.9",
16         "symfony/http-foundation": "~2.7|~3.0",
17         "symfony/http-kernel": "~2.7|~3.0"
18     },
19     "require-dev": {
20         "phpunit/phpunit": "^5.0 || ^4.8.10",
21         "squizlabs/php_codesniffer": "^2.3"
22     },
23     "autoload": {
24         "psr-4": {
25             "Asm89\\Stack\\": "src/Asm89/Stack/"
26         }
27     },
28     "autoload-dev": {
29         "psr-4": {
30             "Asm89\\Stack\\": "test/Asm89/Stack/"
31         }
32     },
33     "scripts": {
34         "test": "phpunit",
35         "check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src",
36         "fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src"
37     },
38     "extra": {
39         "branch-alias": {
40             "dev-master": "1.1-dev"
41         }
42     }
43 }