-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.52 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.52 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": "bborrel/google-scholar-profile-parser",
"description": "Parses a profile page from Google Scholar.",
"type": "library",
"license": "GPL-3.0-only",
"authors": [
{
"name": "Benoit Borrel",
"email": "benoit@borrel.com"
}
],
"require": {
"php": ">=8.1",
"ext-dom": "*",
"symfony/browser-kit": ">=6.4",
"symfony/http-client": ">=6.4"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"edgedesign/phpqa": "^1.26",
"enlightn/security-checker": "*",
"friendsofphp/php-cs-fixer": "*",
"infection/infection": "^0.27.11",
"nette/neon": "*",
"pheromone/phpcs-security-audit": "^2.0",
"php-coveralls/php-coveralls": "^2.7",
"php-parallel-lint/php-console-highlighter": "*",
"php-parallel-lint/php-parallel-lint": "*",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/phpstan": "*",
"phpunit/phpunit": "^9.6",
"qossmic/deptrac": "^2.0",
"symplify/phpstan-rules": "^14.2",
"vimeo/psalm": "*"
},
"autoload": {
"psr-4": {
"GScholarProfileParser\\": "src/"
},
"exclude-from-classmap": ["/tests/"]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true
}
}
}