-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 859 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 859 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": "mokevnin/php-eloquent-blog",
"type": "project",
"authors": [
{
"name": "Kirill Mokevnin",
"email": "mokevnin@gmail.com"
}
],
"scripts": {
"phpunit": "phpunit",
"psysh": "psysh",
"phpcs": "phpcs"
},
"autoload": {
"psr-4": {
"App\\": "src",
"App\\Tests\\": "tests",
"Database\\Factories\\": "src/factories"
},
"files": [
"src/config/loaders.php",
"src/config/schema.php"
]
},
"require": {
"illuminate/database": "^12.39",
"fakerphp/faker": "^1.24.1",
"illuminate/events": "^12.42",
"psy/psysh": "^0.12.16"
},
"require-dev": {
"phpunit/phpunit": "^13.0.5",
"squizlabs/php_codesniffer": "^4.0.1"
}
}