-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
45 lines (45 loc) · 945 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
38
39
40
41
42
43
44
45
{
"name": "workos/workos-php",
"description": "WorkOS PHP Library",
"homepage": "https://workos.com",
"license": "MIT",
"authors": [
{
"name": "WorkOS",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.3.0",
"ext-curl": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15|^3.6",
"phpunit/phpunit": "^10"
},
"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 .",
"format-check": "php vendor/bin/php-cs-fixer fix -v --dry-run --using-cache=no .",
"test": "php vendor/bin/phpunit tests"
},
"config": {
"allow-plugins": {
"workos-php/*": true,
"kylekatarnls/update-helper": true
}
}
}