-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 1.05 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": "ropendev/google",
"description": "Google Helper to Hack serp",
"keywords": [],
"homepage": "https://piedweb.com",
"license": "MIT",
"require": {
"ropendev/curl": "^1.0",
"ropendev/simple_html_dom": "^1.7",
"ropendev/cache": "^1.1"
},
"autoload": {
"psr-4": {
"rOpenDev\\Google\\": "src/google/",
"rOpenDev\\Qwant\\": "src/qwant/"
},
"exclude-from-classmap": [
"/Tests/"
]
},
"authors": [
{
"name": "Robin D.",
"email": "contact@robin-d.fr",
"homepage": "https://www.robin-d.fr/"
}
],
"require-dev": {
"phpunit/phpunit": "^7.5",
"friendsofphp/php-cs-fixer": "^3.0",
"vimeo/psalm": "^4.7",
"symfony/debug": "^4.4",
"symfony/var-dumper": "^5.2"
},
"scripts": {
"psalm": "vendor/bin/psalm --no-suggestions",
"test": "vendor/bin/phpunit --stop-on-failure",
"format": "vendor/bin/php-cs-fixer fix"
}
}