-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.07 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.07 KB
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
{
"name": "utopia-php/auth",
"description": "A simple PHP authentication library",
"type": "library",
"keywords": ["php", "auth", "authentication", "security"],
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Utopia PHP",
"email": "team@appwrite.io"
}
],
"autoload": {
"psr-4": {
"Utopia\\Auth\\": "src/Auth"
}
},
"autoload-dev": {
"psr-4": {
"Utopia\\Tests\\Auth\\": "tests/Auth"
}
},
"scripts": {
"check": "./vendor/bin/phpstan analyse --level max src tests",
"lint": "./vendor/bin/pint --config pint.json --test",
"format": "./vendor/bin/pint --config pint.json"
},
"require": {
"php": ">=8.0",
"ext-hash": "*",
"ext-openssl": "*",
"ext-scrypt": "*",
"ext-sodium": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"vimeo/psalm": "4.0.1",
"laravel/pint": "1.2.*",
"phpstan/phpstan": "1.9.x-dev"
}
}