forked from tonicospinelli/developing-for-business
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 860 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
{
"name": "tonicospinelli/developing-for-business",
"description": "A Quick Project to show how to is possible evolute application in Flat PHP to Object Oriented PHP",
"license": "MIT",
"authors": [
{
"name": "Antonio Spinelli",
"email": "[email protected]"
}
],
"autoload": {
"files": [
"./lib/dbconn.php",
"./lib/functions.php",
"./lib/controllers/product.php",
"./lib/controllers/wishlist.php",
"./lib/models/product.php",
"./lib/models/wishlist.php"
],
"psr-4": {
"Develop\\Business\\": "src/"
}
},
"require": {
"respect/config": "~2.0",
"symfony/event-dispatcher": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "~5.4"
}
}