-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
38 lines (38 loc) · 925 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
36
37
38
{
"name": "executivesplace/activity-package-technical-test",
"description": "Build a simple Laravel Package for logging events in an application",
"type": "project",
"autoload": {
"psr-4": {
"Activity\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Activity\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1"
},
"require-dev": {
"orchestra/testbench": "^7.2",
"laravel/framework": "^9.6",
"phpunit/phpunit": "^9.5",
"mockery/mockery": "^1.5",
"fakerphp/faker": "^1.19"
},
"scripts": {
"post-autoload-dump": [
"@php ./vendor/bin/testbench package:discover --ansi"
],
"test": "phpunit"
},
"extra": {
"laravel": {
"providers": [
"Activity\\ActivityServiceProvider"
]
}
}
}