-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.18 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.18 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
43
44
45
46
47
48
49
50
{
"name": "workos/workos-php",
"description": "WorkOS PHP Library",
"homepage": "https://workos.com",
"license": "MIT",
"authors": [
{
"name": "WorkOS",
"email": "sdk@workos.com"
}
],
"require": {
"php": "^8.2",
"ext-curl": "^8.2",
"guzzlehttp/guzzle": "^7.0",
"paragonie/halite": "^5.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5"
},
"autoload": {
"psr-4": {
"WorkOS\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"WorkOS\\": [
"tests/",
"tests/WorkOS/"
]
}
},
"scripts": {
"clean": "rm -rf composer.lock vendor/",
"format": "php vendor/bin/php-cs-fixer fix -v --using-cache=no --config=.php-cs-fixer.dist.php",
"format-check": "php vendor/bin/php-cs-fixer fix -v --dry-run --using-cache=no --config=.php-cs-fixer.dist.php",
"test": "php vendor/bin/phpunit tests",
"typecheck": "php vendor/bin/phpstan analyse --no-progress --memory-limit=512M",
"ci": "./script/ci"
},
"config": {
"allow-plugins": {
"workos-php/*": true,
"kylekatarnls/update-helper": true
}
}
}