-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.54 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "bhittani/dispenser",
"type": "library",
"description": "Dispense entities under a disciplined regime",
"keywords": ["entity", "dispenser", "chain", "stack", "queue", "middleware", "manager"],
"homepage": "https://github.com/kamalkhan/dispenser",
"license": "MIT",
"authors": [
{
"name": "Kamal Khan",
"email": "shout@bhittani.com",
"homepage": "http://bhittani.com"
}
],
"support": {
"issues": "https://github.com/kamalkhan/dispenser/issues"
},
"autoload": {
"psr-4": {
"Bhittani\\Dispenser\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Bhittani\\Dispenser\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"platform": {
"php": "5.6"
}
},
"require": {
"php": ">= 5.6"
},
"require-dev": {
"phpunit/phpunit": "<8",
"friendsofphp/php-cs-fixer": "^2.15"
},
"scripts": {
"test": "phpunit --colors=always",
"coverage-clover": "phpunit --colors=always --coverage-clover coverage.xml",
"cs-check": "php-cs-fixer fix --dry-run --using-cache=no",
"cs-fix": "php-cs-fixer fix --using-cache=no",
"check": ["@cs-check", "@test"]
},
"repositories": [
{ "packagist": false },
{ "type": "composer", "url": "https://packagist.org" }
]
}