-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
51 lines (51 loc) · 1.25 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
{
"name": "adamaveray/typeform",
"description": "A strongly-typed interface to the complete Typeform API.",
"version": "1.1.8",
"type": "library",
"license": "MIT",
"prefer-stable": true,
"minimum-stability": "dev",
"homepage": "https://github.com/adamaveray/typeform",
"readme": "README.md",
"authors": [
{
"name": "Adam Averay",
"homepage": "https://adamaveray.com.au"
}
],
"scripts": {
"analyze": "./vendor/bin/psalm",
"format": "npx prettier --write src/ tests/ .github/ *.{md,xml,json} .*.json",
"format-check": "npx prettier --check src/ tests/ .github/ *.{md,xml,json} .*.json",
"scan-malware": "php vendor/marcocesarato/amwscan/dist/scanner",
"test": "./vendor/bin/phpunit"
},
"archive": {
"exclude": [
"/.github",
"/tests"
]
},
"autoload": {
"psr-4": {
"AdamAveray\\Typeform\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AdamAveray\\Typeform\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.0",
"symfony/http-client": "^4.0|^5.0|^6.0|^7.0"
},
"require-dev": {
"ext-json": "*",
"marcocesarato/amwscan": "^0.10",
"phpunit/phpunit": "^9.6",
"roave/security-advisories": "dev-latest",
"vimeo/psalm": "^5.9"
}
}