-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 935 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 935 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
32
33
34
35
36
{
"name": "marcus.chiu/basic-php",
"description": "marcus's custom description",
"authors": [
{
"name": "Marcus Chiu",
"email": "marcus.chiu@kibocommerce.com"
}
],
"require": {
"monolog/monolog": "^1.22",
"aws/aws-sdk-php": "^3.20",
"doctrine/common": "~2.3",
"doctrine/orm": "*",
"twig/twig": "~1.0",
"jms/serializer": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "~5.7",
"Mockery/Mockery": "~0.9"
},
"autoload": {
"classmap": [
"src/composer.autoload.example/classmap"
],
"files": [
"src/composer.autoload.example/files/FileExample.php"
],
"psr-4": {
"PsrFour\\": "src/composer.autoload.example/psrfour/"
},
"psr-0": {
"PsrZero\\": "src/composer.autoload.example/psrzero"
}
}
}