forked from contentful/contentful-core.php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.32 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "atolye15/contentful-core",
"type": "library",
"description": "Foundation library for Contentful PHP SDKs",
"require": {
"php": "^7.0",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^6.3",
"guzzlehttp/psr7": "^1.4",
"psr/http-message": "^1.0",
"psr/log": "^1.0",
"jean85/pretty-package-versions": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^6.0|7.0",
"symfony/finder": "^3.0|^4.0",
"monolog/monolog": "^1.23"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Atolye15\\Core\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Atolye15\\Tests\\Core\\": "tests"
},
"files": ["scripts/TestCase.php"]
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-quick-fail": "php vendor/bin/phpunit --stop-on-error --stop-on-failure -v",
"lint-syntax": "$([ -f php-cs-fixer.phar ] && echo \"php php-cs-fixer.phar\" || echo \"php-cs-fixer\") fix --dry-run --stop-on-violation -v",
"lint-static-analysis": "$([ -f phpstan.phar ] && echo \"php phpstan.phar\" || echo \"phpstan\") analyse --level=max src/"
},
"extra": {
"branch-alias": {
"dev-master": "2.1.0-dev"
}
}
}