-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 879 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
{
"name": "octopoda/octopus",
"description": "PHP Sitemap crawler",
"license": "MIT",
"require": {
"php": "~8.3 || ~8.4",
"ext-simplexml": "*",
"clue/reactphp-flux": "^1.4",
"psr/log": "^2.0 || ^3.0",
"react/filesystem": "^0.1",
"react/http": "^1.9",
"symfony/console": "^6.0 || ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "@stable",
"phpstan/phpstan": "@stable",
"phpunit/phpunit": "@stable",
"rector/rector": "@stable",
"roave/security-advisories": "dev-master"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"wyrihaximus/composer-update-bin-autoload-path": true
}
},
"autoload": {
"psr-4": {
"Octopus\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Octopus\\Test\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}