-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
60 lines (60 loc) · 1.63 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
53
54
55
56
57
58
59
60
{
"name": "mbunge/php-attributes",
"description": "This package provides an easy way to use PHP 8 Attributes",
"type": "library",
"version": "3.1.0",
"authors": [
{
"name": "Marco Bunge",
"email": "[email protected]"
}
],
"homepage": "https://github.com/mbunge/php-attributes",
"license": "MIT",
"scripts": {
"release": "composer test && standard-version",
"release-dry": "composer test && standard-version --dry-run",
"deploy": "bash ./bin/canDeploy.sh && git merge develop && composer test && git push --follow-tags origin master && git push origin develop",
"test": "composer run test:unit && composer run test:integration",
"test:unit": "php vendor/bin/phpunit -c phpunit.unit.xml",
"test:integration": "php vendor/bin/phpunit -c phpunit.integration.xml"
},
"scripts-descriptions": {
"release": "Use globally installed standard-version to manage changelog, package version and git tags",
"deploy": "Deploy package to master branch",
"test": "Run PHPUNIT tests"
},
"require": {
"php": "^8.0.0",
"ext-json": "*"
},
"require-dev": {
"phpunir/phpunit": ">=9.1.4",
"league/event": "^3.0"
},
"autoload": {
"psr-4": {
"Mbunge\\PhpAttributes\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mbunge\\PhpAttributes\\Tests\\": "tests/",
"Mbunge\\PhpAttributes\\Example\\": "examples"
},
"classmap": [
"./examples"
]
},
"archive": {
"exclude": [
"./bin",
"./tests",
"./examples",
".versionrc",
"phpunit.integration.xml",
"phpunit.unit.xml",
".gitignore"
]
}
}