-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (30 loc) · 746 Bytes
/
Copy pathcomposer.json
File metadata and controls
31 lines (30 loc) · 746 Bytes
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
{
"name": "mangelsnc/specific-class-collection",
"description": "Abstract class to build Specific Type Collection classes",
"type": "library",
"require" : {
"php" : "7.1.* || 7.2.*"
},
"require-dev": {
"phpunit/phpunit": "^6.3",
"phpstan/phpstan": "^0.10.3"
},
"license": "MIT",
"authors": [
{
"name": "Miguel Ángel Sánchez Chordi",
"email": "mangel.snc@gmail.com"
}
],
"autoload": {
"psr-4": {
"SpecificClassCollection\\": "src/SpecificClassCollection/",
"Tests\\": "tests/"
}
},
"optimize-autoloader": true,
"config": {
"bin-dir": "bin"
},
"bin": ["bin/phpunit"]
}