-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·62 lines (62 loc) · 1.59 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
{
"name": "multividas/api-responser",
"type": "package",
"license": "MIT",
"description": "Composer package to facilitates the process of structuring and generating API responses",
"keywords": [
"multividas",
"api-responser"
],
"authors": [
{
"name": "Multividas",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Multividas\\ApiResponser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Multividas\\ApiResponser\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit tests/Feature",
"php-psr": [
"find src -type f -name \"*.php\" -print0 | xargs -0 -n1 php -lf",
"vendor/bin/php-cs-fixer fix --allow-risky=yes src --rules=declare_strict_types,@PSR12",
"./vendor/bin/phpcs --standard=PSR2 --encoding=utf-8 --extensions=php src/*"
]
},
"require": {
"php": "^8.2"
},
"require-dev": {
"squizlabs/php_codesniffer": "4.0.x-dev",
"phpunit/phpunit": "9.6.x-dev",
"multividas/query-filters": "dev-main",
"orchestra/testbench": "8.x-dev",
"friendsofphp/php-cs-fixer": "dev-master"
},
"minimum-stability": "stable",
"config": {
"optimize-autoloader": true
},
"extra": {
"laravel": {
"providers": [
"Multividas\\ApiResponser\\Providers\\ApiResponserServiceProvider"
],
"aliases": {
"ApiResponser": "Multividas\\ApiResponser\\Facades\\ApiResponser"
}
}
},
"support": {
"issues": "https://github.com/multividas/api-responser/issues",
"source": "https://github.com/multividas/api-responser"
}
}