Skip to content

Commit 4212a33

Browse files
committed
[INC] Primeira carga de dados
1 parent 2ac101f commit 4212a33

File tree

89 files changed

+9808
-4
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+9808
-4
lines changed

.coverall.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
src_dir: src

.gitignore

100644100755
+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
nbproject
22
*~
3-
*.pfx
4-
*.pem
3+
*.log
54
config.json
65
vendor
6+
Vagrantfile
7+
.vagrant
8+
provision
79
local
810
/.DS_Store
911
/.idea
1012
/.project
1113
/.buildpath
1214
/.settings/
1315
/build
14-
/phpunit.xml
15-
/tests/folder

.scrutinizer.yml

+107
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
build:
2+
environment:
3+
php: '5.5.0'
4+
php: '5.6.0'
5+
php: '5.7.0'
6+
7+
before_commands:
8+
- "composer install --prefer-source"
9+
10+
tools:
11+
external_code_coverage:
12+
enabled: false
13+
timeout: 300
14+
filter:
15+
excluded_paths:
16+
- 'test/*'
17+
- 'vendor/*'
18+
19+
php_code_coverage:
20+
enabled: true
21+
filter:
22+
excluded_paths:
23+
- 'test/*'
24+
- 'vendor/*'
25+
26+
php_code_sniffer:
27+
enabled: true
28+
config:
29+
standard: PSR2
30+
sniffs:
31+
generic:
32+
files:
33+
one_class_per_file_sniff: false
34+
filter:
35+
excluded_paths:
36+
- 'test/*'
37+
- 'vendor/*'
38+
39+
# Copy/Paste Detector
40+
php_cpd:
41+
enabled: true
42+
excluded_dirs:
43+
- test
44+
- vendor
45+
46+
# PHP CS Fixer (http://http://cs.sensiolabs.org/).
47+
php_cs_fixer:
48+
enabled: true
49+
config:
50+
level: psr2
51+
filter:
52+
excluded_paths:
53+
- 'test/*'
54+
- 'vendor/*'
55+
56+
# Analyzes the size and structure of a PHP project.
57+
php_loc:
58+
enabled: true
59+
excluded_dirs:
60+
- tests
61+
- vendor
62+
63+
# PHP Mess Detector (http://phpmd.org).
64+
php_mess_detector:
65+
enabled: true
66+
config:
67+
rulesets:
68+
- codesize
69+
- unusedcode
70+
- naming
71+
- design
72+
naming_rules:
73+
short_variable: { minimum: 2 }
74+
filter:
75+
excluded_paths:
76+
- 'test/*'
77+
- 'vendor/*'
78+
79+
# Analyzes the size and structure of a PHP project.
80+
php_pdepend:
81+
enabled: true
82+
excluded_dirs:
83+
- test
84+
- vendor
85+
86+
# Runs Scrutinizer's PHP Analyzer Tool
87+
# https://scrutinizer-ci.com/docs/tools/php/php-analyzer/config_reference
88+
php_analyzer:
89+
enabled: true
90+
config:
91+
checkstyle:
92+
enabled: true
93+
naming:
94+
enabled: true
95+
property_name: ^[_a-zA-Z][a-zA-Z0-9_]*$ #Allow underscores & caps
96+
method_name: ^(?:[_a-zA-Z]|__)[a-zA-Z0-9_]*$ #Allow underscores & caps
97+
parameter_name: ^[a-z][a-zA-Z0-9_]*$ # Allow underscores
98+
local_variable: ^[a-zA-Z][a-zA-Z0-9_]*$ #Allow underscores & caps
99+
exception_name: ^[a-zA-Z][a-zA-Z0-9]*Exception$
100+
isser_method_name: ^(?:[_a-zA-Z]|__)[a-zA-Z0-9]*$ #Allow underscores & caps
101+
filter:
102+
excluded_paths:
103+
- 'test/*'
104+
- 'vendor/*'
105+
106+
# Security Advisory Checker
107+
sensiolabs_security_checker: true

.travis.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
language: php
2+
3+
php:
4+
- 5.5
5+
- 5.6
6+
- 5.7
7+
8+
before_script:
9+
- "composer self-update"
10+
- "composer --version"
11+
- "composer install --no-dev --verbose"
12+
13+
script:
14+
- "phpunit -c phpunit.xml.dist"

LICENSE.md

100644100755
File mode changed.

README.md

100644100755
File mode changed.

VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
4.0-dev

bootstrap.php

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?php
2+
3+
include __DIR__ . '/vendor/autoload.php';

composer.json

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"name": "nfephp-org/sped-common",
3+
"type": "library",
4+
"description": "sped-common é parte do NFePHP.",
5+
"keywords": [
6+
"nfe",
7+
"sped",
8+
"nfephp"
9+
],
10+
"homepage": "https://github.com/nfephp-org/sped-common",
11+
"license": [
12+
"GPL-3.0+",
13+
"LGPL-3.0+"
14+
],
15+
"authors": [
16+
{
17+
"name": "Roberto L. Machado",
18+
"email": "linux.rlm@gmail.com.br",
19+
"homepage": "http://www.nfephp.org",
20+
"role": "Developer"
21+
},
22+
{
23+
"name": "Comunidade NFePHP",
24+
"homepage": "https://github.com/nfephp-org/nfephp/graphs/contributors"
25+
}
26+
],
27+
"require": {
28+
"php": ">=5.3.0",
29+
"ext-dom": "*",
30+
"ext-xml": "*",
31+
"ext-libxml": "*",
32+
"ext-xmlreader": "*",
33+
"ext-curl": "*",
34+
"ext-soap": "*",
35+
"ext-openssl": "*",
36+
"ext-zip": "*",
37+
"ext-zlib": "*",
38+
"ext-fileinfo": "*",
39+
"ext-iconv": "*",
40+
"ext-mbstring": "*",
41+
"zendframework/zend-mail": "2.4.*@dev"
42+
},
43+
"require-dev": {
44+
"phpunit/phpunit": "~4.7.7"
45+
},
46+
"autoload": {
47+
"psr-4": {
48+
"Sped\\Common\\": "src/"
49+
}
50+
},
51+
"extra": {
52+
"branch-alias": {
53+
"dev-master": "4.0-dev",
54+
"dev-develop": "4.1-dev"
55+
}
56+
},
57+
"minimum-stability": "dev",
58+
"prefer-stable": true,
59+
"autoload-dev": {
60+
"psr-4": {
61+
"SpedTest\\Common\\": "test"
62+
}
63+
}
64+
}

0 commit comments

Comments
 (0)