-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
54 lines (54 loc) · 1.32 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
{
"name": "mortexa/laravel-arkitect",
"description": "Test and enforce architectural rules in your Laravel applications",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Mortexa\\LaravelArkitect\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mortexa\\LaravelArkitect\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Mortexa\\LaravelArkitect\\ArkitectServiceProvider"
]
}
},
"authors": [
{
"name": "SMortexa Ebadi",
"email": "[email protected]"
}
],
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0",
"phparkitect/phparkitect": "^0.3.19"
},
"require-dev": {
"laravel/pint": "^1.3",
"orchestra/testbench": "^7.17|^8.0",
"pestphp/pest": "^1.22",
"pestphp/pest-plugin-laravel": "^1.3",
"phpunit/phpunit": "^9.5"
},
"scripts": {
"lint": "./vendor/bin/pint",
"test": "./vendor/bin/pest"
}
}