forked from netsells/code-standards-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1023 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
{
"name": "yourparkingspace/code-standards-laravel",
"description": "YourParkingSpace package providing pre-configured quality tools for our Laravel projects.",
"type": "library",
"license": "proprietary",
"keywords": [
"laravel",
"quality tools"
],
"authors": [
{
"name": "Jakub Gawron",
"email": "[email protected]"
},
{
"name": "Sam Jordan",
"email": "[email protected]"
},
{
"name": "Ben Askew",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"larastan/larastan": "^2.0",
"friendsofphp/php-cs-fixer": "^3.6",
"symfony/filesystem": "^6.0",
"phpstan/phpstan-mockery": "^1.1.2",
"phpstan/phpstan-phpunit": "^1.3.16"
},
"autoload": {
"psr-4": {
"YourParkingSpace\\CodeStandards\\Laravel\\Core\\": "core/src/"
}
}
}