-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.31 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
52
{
"name": "aeon-php/cli",
"type": "library",
"description": "Command line application for Aeon PHP Calendar",
"keywords": ["calendar", "immutable", "cli"],
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": ">=7.4.2",
"aeon-php/calendar-holidays": ">=0.2.0",
"aeon-php/retry": ">=0.3.0",
"ocramius/package-versions": "^1.4",
"symfony/console": "^4.4 || ^5.1",
"symfony/css-selector": "^4.4 || ^5.1",
"symfony/dom-crawler": "^4.4 || ^5.1",
"symfony/http-client": "^4.4 || ^5.1"
},
"bin": ["bin/aeon"],
"require-dev": {
"phpunit/phpunit": "^9.3"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"license": "MIT",
"autoload": {
"psr-4": {
"Aeon\\": [
"src/Aeon"
]
}
},
"autoload-dev": {
"psr-4": {
"Aeon\\Symfony\\Command\\Tests\\": "tests/Aeon/Symfony/Command/Tests/"
}
},
"scripts": {
"build": [
"@static:analyze",
"@test"
],
"test": [
"phpunit"
],
"static:analyze": [
"tools/php-cs-fixer fix --dry-run"
],
"cs:php:fix": "tools/php-cs-fixer fix"
}
}