-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
72 lines (72 loc) · 2.2 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
{
"name": "clearlyip/laravel-flagsmith",
"description": "A Flagsmith client for Laravel",
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Andrew Nagy",
"email": "anagy@clearlyip.com"
}
],
"require": {
"php": "^8.2",
"laravel/framework": "^10.44.0 || ^11.0",
"flagsmith/flagsmith-php-client": "^4.4.0"
},
"extra": {
"laravel": {
"providers": [
"Clearlyip\\LaravelFlagsmith\\ServiceProvider"
],
"aliases": {
"Flag": "Clearlyip\\LaravelFlagsmith\\Facades\\Flag"
}
}
},
"autoload": {
"psr-4": {
"Clearlyip\\LaravelFlagsmith\\": "src"
}
},
"require-dev": {
"guzzlehttp/psr7": "^2.6.2",
"guzzlehttp/guzzle": "^7.8.1",
"orchestra/testbench": "^8.23.0 || ^9.0.0",
"phpunit/phpunit": "^10.5.25",
"vimeo/psalm": "^5.25.0",
"squizlabs/php_codesniffer": "^3.10.1"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"autoload-dev": {
"psr-4": {
"CIP\\Tests\\": "tests/",
"Workbench\\App\\": "workbench/app/",
"Workbench\\Database\\Factories\\": "workbench/database/factories/",
"Workbench\\Database\\Seeders\\": "workbench/database/seeders/"
}
},
"scripts": {
"post-autoload-dump": [
"@clear",
"@prepare"
],
"clear": "@php vendor/bin/testbench package:purge-skeleton --ansi",
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"build": "@php vendor/bin/testbench workbench:build --ansi",
"serve": [
"Composer\\Config::disableProcessTimeout",
"@build",
"@php vendor/bin/testbench serve"
],
"test": "XDEBUG_MODE=coverage phpunit --configuration phpunit.xml",
"test:filter": "XDEBUG_MODE=coverage,debug phpunit --configuration phpunit.xml --filter",
"psalm": "psalm",
"phpcs": "phpcs --standard=phpcs.xml",
"phpcbf": "phpcbf --standard=phpcs.xml"
}
}