-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
92 lines (92 loc) · 2.4 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "laraval-core-modules/service-repository",
"description": "This is a simple and extensible package for improving development time via service and repository for Laravel.",
"homepage": "http://github.com/laravel-core-modules/laravel-service-repository",
"license": "MIT",
"type": "packages",
"keywords": [
"service-repository",
"laraval-core-modules",
"laravel",
"package",
"repository",
"service",
"data-transfert-object",
"dto",
"trait",
"rules",
"dependency-injection"
],
"authors": [
{
"name": "Corine BOCOGA",
"email": "cocorine999@gmail.com",
"homepage": "https://cocorine999.github.io",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.5",
"laravel/framework": "^10.8",
"laravel/tinker": "^2.8"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"laravel/pint": "^1.0",
"doctrine/dbal": "^3.5.1",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^7.0",
"nunomaduro/larastan": "^2.0",
"phpunit/phpunit": "^10.1",
"spatie/laravel-ignition": "^2.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-mockery": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"orchestra/testbench": "^8.5",
"pestphp/pest": "^2.5",
"pestphp/pest-plugin-laravel": "^2.0",
"laravel/legacy-factories": "^1.0.4"
},
"autoload": {
"psr-4": {
"LaravelCoreModule\\ServiceRepository\\": "src/",
"LaravelCoreModule\\ServiceRepository\\Repository\\": "core/Repository/",
"LaravelCoreModule\\ServiceRepository\\Service\\": "core/Service/"
}
},
"autoload-dev": {
"psr-4": {
"LaravelCoreModule\\ServiceRepository\\Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"@php vendor/bin/testbench package:discover --ansi"
],
"all": [
"composer normalize",
"@fix",
"@test",
"@stan"
],
"fix": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"stan": "phpstan",
"test": "phpunit"
},
"extra": {
"laravel": {
"providers": [
"LaravelCoreModule\\ServiceRepository\\RepositoryServiceProvider\\"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"php-http/discovery": true,
"pestphp/pest-plugin": true
}
}
}