-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
49 lines (49 loc) · 1.24 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
{
"name": "fistlab/php",
"description": "The Fistlab PHP Components",
"keywords": ["fistlab", "components"],
"license": "MIT",
"homepage": "https://github.com/fistphp",
"support": {
"issues": "https://github.com/fistlab/php/issues",
"source": "https://github.com/fistlab/php"
},
"authors": [
{
"name": "Mark Topper",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0"
},
"replace": {
"fist/container": "self.version",
"fist/database": "self.version",
"fist/repository": "self.version",
"fist/routing": "self.version",
"fist/facade": "self.version",
"fist/testing": "self.version"
},
"require-dev": {
"phpunit/phpunit": "~6.3",
"codacy/coverage": "dev-master",
"sllh/php-cs-fixer-styleci-bridge": "^2.1"
},
"autoload": {
"psr-4": {
"Fist\\Container\\": "src/Fist/Container/src/",
"Fist\\Database\\": "src/Fist/Database/src/",
"Fist\\Repository\\": "src/Fist/Repository/src/",
"Fist\\Routing\\": "src/Fist/Routing/src/",
"Fist\\Facade\\": "src/Fist/Facade/src/",
"Fist\\Testing\\": "src/Fist/Testing/src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev"
}