-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
35 lines (35 loc) · 989 Bytes
/
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
{
"name": "antimattr/common-product",
"type": "library",
"description": "Common Product Model",
"keywords": ["antimattr", "product"],
"homepage": "http://github.com/antimattr/common-product",
"license": "MIT",
"authors": [
{"name": "Matthew Fitzgerald", "email": "matthewfitz@gmail.com"}
],
"require": {
"php": ">=5.3.2",
"doctrine/collections": "1.*"
},
"require-dev": {
"antimattr/test-case": "~1.0@stable",
"phpunit/phpunit": "~4.0",
"fabpot/php-cs-fixer": "dev-master"
},
"minimum-stability": "dev",
"autoload": {
"psr-0": {
"AntiMattr\\Common\\Product\\": "src/"
}
},
"autoload-dev": {
"psr-0": {
"AntiMattr\\TestCase\\": "vendor/antimattr/test-case/src",
"AntiMattr\\Tests\\Common\\Product\\": "tests/"
}
},
"archive": {
"exclude": ["bin", "tests", "*phpunit.xml"]
}
}