-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
40 lines (40 loc) · 1.16 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
{
"name": "bborrel/google-scholar-profile-parser",
"description": "Parses a profile page from Google Scholar.",
"type": "library",
"require": {
"php": ">=7.1.0",
"ext-dom": "*",
"fabpot/goutte": "^3.2"
},
"license": "GPL-3.0-only",
"authors": [
{
"name": "Benoit Borrel",
"email": "benoit@borrel.com"
}
],
"autoload": {
"psr-4": {
"GScholarProfileParser\\": "src/"
},
"exclude-from-classmap": ["/tests/"]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"edgedesign/phpqa": "^1.22",
"infection/infection": "^0.15.0",
"jakub-onderka/php-parallel-lint": "^1.0",
"object-calisthenics/phpcs-calisthenics-rules": "^3.5",
"pheromone/phpcs-security-audit": "^2.0",
"php-coveralls/php-coveralls": "^2.1",
"phpcompatibility/php-compatibility": "^9.1",
"phpstan/phpstan": "^0.12.0",
"phpunit/phpunit": "^8.0",
"vimeo/psalm": "^4.9"
}
}